Last active
September 2, 2016 07:34
-
-
Save dam1r89/8551f54f3d60cf26986c7bc4c88126d0 to your computer and use it in GitHub Desktop.
Steps for deploying Laravel app
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/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