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