Using React and Rails, I made changes from sqlite3 to Postgresql, updated the Gemfile.lock and have the .sh file. Followed the instructions per the Render docs and receive:
Feb 26 03:05:18 PM ==> Cloning from GitHub - nemesismon/the-cooking-canon: Cookbook to digitalize family recipes…
Feb 26 03:05:19 PM ==> Checking out commit 8c566e249983dee7a04e731024fcfe9a598b0bb2 in branch main
Feb 26 03:05:23 PM ==> Detected Node version 16.19.1
Feb 26 03:05:24 PM ==> Running build command ‘./bin/the-cooking-canon-build.sh’…
Feb 26 03:05:24 PM ./bin/the-cooking-canon-build.sh: line 5: bundle: command not found
Feb 26 03:05:24 PM ==> Build failed
Feb 26 03:05:24 PM ==> Generating container image from build. This may take a few minutes…
Here is the build.sh:
#!/usr/bin/env bash
exit on error
set -o errexit
bundle install
bundle exec rake assets:precompile
bundle exec rake assets:clean
bundle exec rake db:migrate
bundle exec rake db:seed