Skip to content

Instantly share code, notes, and snippets.

@pavelzin
pavelzin / deploy.sh
Created November 24, 2018 18:13 — 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