1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/diaspora_ynh.git synced 2024-09-03 18:26:13 +02:00
diaspora_ynh/scripts/bundle_app

27 lines
764 B
Text
Raw Normal View History

#!/bin/bash
pushd $final_path/diaspora
2022-03-02 09:13:11 +01:00
echo 2.6.6 > .ruby-version # overwrite 2.6 default from diaspora because rbenv does not understand it
sudo -u $app --login << EOF
gem install bundler:1.17.3
cd diaspora
script/configure_bundler
bin/bundle install --full-index --with=postgresql
EOF
2022-02-21 17:06:48 +01:00
# for some reason rake logs a lot in stderr (tried --quiet, didn't change anything)
# redirecting it to stdout to have a saner log on yunohost side
sudo -u $app --login << EOF
cd diaspora
2022-02-21 17:06:48 +01:00
RAILS_ENV=production bundle exec rake db:migrate 2>&1
EOF
#=================================================
# ASSETS PRECOMPILATION
#=================================================
2022-02-21 17:06:48 +01:00
sudo -u $app --login << EOF
cd diaspora
2022-02-21 17:06:48 +01:00
RAILS_ENV=production bin/rake assets:precompile 2>&1
EOF
popd