Skip to content

Instantly share code, notes, and snippets.

@qsun
Created January 18, 2016 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qsun/85f4f403f27f8b0c0a12 to your computer and use it in GitHub Desktop.
Save qsun/85f4f403f27f8b0c0a12 to your computer and use it in GitHub Desktop.
Deploy script for laravel
#!/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 git@bitbucket.org: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