From 1fd858287d544ffec2fed7aea195d9418ef158d4 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Fri, 11 Jul 2025 21:42:11 -0500 Subject: [PATCH] fix: clear and re-create caches --- docker/entrypoint.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 0ff26a8..149306c 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -73,7 +73,15 @@ done echo -e "\n====================== Cleaning up... ====================== \n" +# Clear caches echo $(php artisan cache:clear) +echo $(php artisan view:clear) +echo $(php artisan route:clear) +echo $(php artisan event:clear) + +# Re-create caches +echo $(php artisan route:cache) +echo $(php artisan event:cache) echo -e "\n====================== Spinning up Supervisor daemon... ====================== \n"