mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-13 21:31:28 +00:00
15 lines
389 B
Bash
Executable file
15 lines
389 B
Bash
Executable file
#!/bin/bash
|
|
|
|
env
|
|
cd /var/www
|
|
source /var/www/.env
|
|
rm -rf /var/www/public/assets
|
|
mv /home/web/assets /var/www/public/
|
|
chown -R web:web /var/www/public
|
|
|
|
LOG_FILE = "/var/www/log/$RAILS_ENV.log"
|
|
touch $LOG_FILE
|
|
chown web:web $LOG_FILE
|
|
|
|
su -c "cd /var/www && bundle exec rake assets:precompile" -s /bin/bash -l web
|
|
su -c "cd /var/www && bundle exec puma -C config/puma.rb" -s /bin/bash -l web
|