1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-18 20:59:39 +02:00
Maybe/bin/render-build.sh

13 lines
251 B
Bash
Raw Normal View History

2024-02-02 15:52:00 -06:00
#!/usr/bin/env bash
set -o errexit
echo "Installing gems..."
2024-02-02 16:13:06 -06:00
bundle install
2025-05-07 10:00:24 -05:00
echo "Clobbering old assets..."
bundle exec rails assets:clobber
2025-05-07 10:00:24 -05:00
echo "Precompiling assets for production..."
bundle exec rails assets:precompile
echo "✅ Build complete"