Skip to content

Instantly share code, notes, and snippets.

@JeffreyNaval
Last active January 20, 2017 12:33
Show Gist options
  • Save JeffreyNaval/20980c1e1127934f24ba036c22a92453 to your computer and use it in GitHub Desktop.
Save JeffreyNaval/20980c1e1127934f24ba036c22a92453 to your computer and use it in GitHub Desktop.
Laravel Deployment Script
# 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