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