1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mastodon_ynh.git synced 2024-09-03 19:46:02 +02:00

fix bundle install

This commit is contained in:
yalh76 2020-05-19 13:25:24 +02:00
parent 4aafbbb86c
commit f4487bb3df
2 changed files with 6 additions and 2 deletions

View file

@ -199,7 +199,9 @@ chown -R "$app": "$final_path"
pushd "$final_path/live"
ynh_use_nodejs
bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test
bundle config deployment 'true'
bundle config without 'development test'
bundle install -j$(getconf _NPROCESSORS_ONLN)
yarn install --pure-lockfile
echo "SAFETY_ASSURED=1">> $config
RAILS_ENV=production bundle exec rails db:setup --quiet

View file

@ -289,7 +289,9 @@ chown -R "$app": "$final_path"
pushd "$final_path/live"
ynh_use_nodejs
bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test
bundle config deployment 'true'
bundle config without 'development test'
bundle install -j$(getconf _NPROCESSORS_ONLN)
yarn install --pure-lockfile
RAILS_ENV=production bundle exec rails assets:clean
RAILS_ENV=production bundle exec rails assets:precompile