Files
maybe/bin/render-build.sh
2025-05-07 10:00:24 -05:00

13 lines
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"