From 1bc10d6a51ce3b9eeffc261be9522312c7524ad4 Mon Sep 17 00:00:00 2001 From: Mali Oz Date: Wed, 1 May 2024 15:19:37 -0300 Subject: [PATCH] remove route and config caches --- docker-deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-deploy.sh b/docker-deploy.sh index 7e5d708..ce80715 100755 --- a/docker-deploy.sh +++ b/docker-deploy.sh @@ -10,9 +10,9 @@ fi php artisan storage:link # Runs any DB migration php artisan migrate --force -# Clear and restart caches +# Clear caches +php artisan route:clear +php artisan config:clear php artisan cache:clear -php artisan config:cache php artisan view:cache -php artisan route:cache php artisan event:cache