mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
0ecc2614af
* Replace the i18n:js:export task with assets:export_locales * Update the package-lock.json to fix bin/setup_dev errors
12 lines
243 B
Bash
Executable File
12 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
export MAKE="make --jobs $(nproc)"
|
|
|
|
bundle install --jobs $(nproc)
|
|
bundle exec rake db:create db:migrate
|
|
bundle exec rake db:seed
|
|
bundle exec rake openproject:plugins:register_frontend
|
|
bundle exec rake assets:export_locales
|