2022-12-15 11:40:36 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e # Fail the whole script on first error
|
|
|
|
|
|
|
|
# Fetch Ruby gem dependencies
|
2023-04-05 17:58:44 -04:00
|
|
|
bundle config path 'vendor/bundle'
|
|
|
|
bundle config with 'development test'
|
|
|
|
bundle install
|
2022-12-15 11:40:36 -05:00
|
|
|
|
|
|
|
# Make Gemfile.lock pristine again
|
|
|
|
git checkout -- Gemfile.lock
|
|
|
|
|
2023-04-05 17:58:44 -04:00
|
|
|
# Fetch Javascript dependencies
|
2023-11-09 09:30:07 -05:00
|
|
|
corepack prepare
|
2023-11-08 05:57:21 -05:00
|
|
|
yarn install --immutable
|
2023-04-05 17:58:44 -04:00
|
|
|
|
2022-12-15 11:40:36 -05:00
|
|
|
# [re]create, migrate, and seed the test database
|
|
|
|
RAILS_ENV=test ./bin/rails db:setup
|
|
|
|
|
2023-03-29 07:27:19 -04:00
|
|
|
# [re]create, migrate, and seed the development database
|
|
|
|
RAILS_ENV=development ./bin/rails db:setup
|
|
|
|
|
2022-12-15 11:40:36 -05:00
|
|
|
# Precompile assets for development
|
|
|
|
RAILS_ENV=development ./bin/rails assets:precompile
|
|
|
|
|
|
|
|
# Precompile assets for test
|
2023-11-28 09:47:32 -05:00
|
|
|
RAILS_ENV=test ./bin/rails assets:precompile
|