mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-14 08:50:44 +00:00
059be8a76a
Fix row issue in profiles, fix tests.
15 lines
392 B
Bash
Executable file
15 lines
392 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd /var/www
|
|
|
|
source /var/www/.env
|
|
|
|
if [ $RAILS_ENV = "production" ]; then
|
|
rm -rf /var/www/public/assets
|
|
mv /home/web/assets /var/www/public/
|
|
chown -R web:web /var/www
|
|
fi
|
|
|
|
su -c "bundle config github.https true; cd /var/www && bundle install --path /var/bundle --jobs 4" -s /bin/bash -l web
|
|
su -c "cd /var/www && bundle exec puma -C config/puma.rb" -s /bin/bash -l web
|
|
bash
|