1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00
Maybe/bin/render-build.sh
2025-05-07 10:00:24 -05:00

13 lines
No EOL
251 B
Bash
Executable file

#!/usr/bin/env bash
set -o errexit
echo "Installing gems..."
bundle install
echo "Clobbering old assets..."
bundle exec rails assets:clobber
echo "Precompiling assets for production..."
bundle exec rails assets:precompile
echo "✅ Build complete"