Last active
January 20, 2017 12:33
-
-
Save JeffreyNaval/20980c1e1127934f24ba036c22a92453 to your computer and use it in GitHub Desktop.
Laravel Deployment Script
This file contains hidden or 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
# Enable Maintenance Mode | |
php artisan down | |
# Update git | |
git pull origin master | |
# Update vendor | |
composer install --no-interaction --no-dev --prefer-dist | |
# Update database | |
php artisan migrate --force | |
# Update ownership | |
chown -R www-data:www-data ./ | |
# Restart Queues | |
php artisan queue:restart | |
# Disable Maintance Mode | |
php artisan up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment