Modify start command for storage and config setup

Updated start command to include storage setup and config clear.
This commit is contained in:
Fernando
2026-05-09 00:16:33 -06:00
committed by GitHub
parent 6068390305
commit 9fd484fc7b
+1 -1
View File
@@ -6,4 +6,4 @@ cmds = [
] ]
[start] [start]
cmd = "php artisan serve --host=0.0.0.0 --port=80" cmd = "mkdir -p storage/framework/sessions storage/framework/cache storage/framework/views && chmod -R 775 storage && php artisan storage:link --force && php artisan config:clear && php artisan serve --host=0.0.0.0 --port=80"