Created
January 18, 2016 19:54
-
-
Save qsun/85f4f403f27f8b0c0a12 to your computer and use it in GitHub Desktop.
Deploy script for laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
set -x | |
/sbin/start-stop-daemon --stop --oknodo --pidfile /home/httpsreminder/queue.pid --retry=TERM/30/KILL/5 | |
if [ -d httpsreminder.com ]; then | |
pushd httpsreminder.com | |
git pull | |
popd | |
else | |
git clone [email protected]:qsun/httpsreminder.com.git | |
fi | |
pushd httpsreminder.com | |
composer install | |
php artisan migrate --force | |
php artisan queue:restart | |
/sbin/start-stop-daemon --start --make-pidfile --pidfile /home/httpsreminder/queue.pid --exec /usr/bin/php -d /home/httpsreminder/httpsreminder.com -b -- artisan queue:work --daemon | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment