mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
9 lines
273 B
Bash
9 lines
273 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd /var/www
|
||
|
chown -R web:web /var/www
|
||
|
|
||
|
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 && source .env.dev && bundle exec puma -C config/puma.rb" -s /bin/bash -l web
|
||
|
bash
|