From 9fd484fc7bf20e25bd6f10fab8f70e9e5eb64b2b Mon Sep 17 00:00:00 2001 From: Fernando <82854646+FernandosPerez@users.noreply.github.com> Date: Sat, 9 May 2026 00:16:33 -0600 Subject: [PATCH] Modify start command for storage and config setup Updated start command to include storage setup and config clear. --- nixpacks.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixpacks.toml b/nixpacks.toml index 90da1985..95b52094 100644 --- a/nixpacks.toml +++ b/nixpacks.toml @@ -6,4 +6,4 @@ cmds = [ ] [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"