Skip to content

Instantly share code, notes, and snippets.

@vsemradu
vsemradu / deploy.sh
Created August 15, 2018 10:44 — forked from sahibalejandro/deploy.sh
Deploy script for Laravel projects.
# Shutdown the laravel app
php artisan down
# Install new composer packages
composer install --no-dev --prefer-dist
# Cache boost configuration and routes
php artisan cache:clear
php artisan config:cache
php artisan route:cache