Skip to content

Instantly share code, notes, and snippets.

@iBet7o
Created July 15, 2022 07:22
Show Gist options
  • Save iBet7o/b438b2e09e9ef4035bb27398d252d4f1 to your computer and use it in GitHub Desktop.
Save iBet7o/b438b2e09e9ef4035bb27398d252d4f1 to your computer and use it in GitHub Desktop.
Commands to deploy Laravel APP
#!/bin/bash
rm -Rf vendor &&
composer install --prefer-dist --optimize-autoloader --no-dev &&
php artisan migrate --force &&
php artisan optimize:clear &&
php artisan optimize &&
php artisan view:cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment