From 91b8263e963f162786b1d57e4f85ad893698bb26 Mon Sep 17 00:00:00 2001 From: Yatish Mehta Date: Sun, 26 Jan 2025 17:39:54 -0800 Subject: [PATCH] Fixed render-build.sh file --- bin/render-build.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 bin/render-build.sh diff --git a/bin/render-build.sh b/bin/render-build.sh new file mode 100755 index 0000000..d66ac43 --- /dev/null +++ b/bin/render-build.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +# exit on error +set -o errexit + +bundle install +bundle exec rails assets:precompile +bundle exec rails assets:clean + +# If you're using a Free instance type, you need to +# perform database migrations in the build command. +# Uncomment the following line: + +bundle exec rails db:migrate \ No newline at end of file