mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 05:54:27 +00:00
25 lines
630 B
Bash
Executable file
25 lines
630 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e # Fail the whole script on first error
|
|
|
|
# Fetch Ruby gem dependencies
|
|
bundle install --path vendor/bundle --with='development test'
|
|
|
|
# Fetch Javascript dependencies
|
|
yarn install
|
|
|
|
# Make Gemfile.lock pristine again
|
|
git checkout -- Gemfile.lock
|
|
|
|
# [re]create, migrate, and seed the test database
|
|
RAILS_ENV=test ./bin/rails db:setup
|
|
|
|
# [re]create, migrate, and seed the development database
|
|
RAILS_ENV=development ./bin/rails db:setup
|
|
|
|
# Precompile assets for development
|
|
RAILS_ENV=development ./bin/rails assets:precompile
|
|
|
|
# Precompile assets for test
|
|
RAILS_ENV=test NODE_ENV=tests ./bin/rails assets:precompile
|