Skip to content

Instantly share code, notes, and snippets.

@dam1r89
Last active September 2, 2016 07:34
Show Gist options
  • Save dam1r89/8551f54f3d60cf26986c7bc4c88126d0 to your computer and use it in GitHub Desktop.
Save dam1r89/8551f54f3d60cf26986c7bc4c88126d0 to your computer and use it in GitHub Desktop.
Steps for deploying Laravel app
#!/bin/sh
cd /project/path
php artisan down
git pull
composer install
php artisan migrate
php artisan optimize
# php artisan responsecache:clear
php artisan route:cache
php artisan queue:restart
php artisan up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment