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

13 lines
202 B
Bash
Raw Normal View History

2024-02-02 15:52:00 -06:00
#!/usr/bin/env bash
# exit on error
set -o errexit
echo "Installing gems..."
2024-02-02 16:13:06 -06:00
bundle install
echo "Precompiling assets..."
2024-02-02 16:13:06 -06:00
./bin/rails assets:precompile
./bin/rails assets:clean
echo "Build complete"