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