From 673d722a6363e0e089fde417a1666d815b9967be Mon Sep 17 00:00:00 2001 From: "jack.vatan" Date: Mon, 25 May 2026 13:23:11 +0200 Subject: [PATCH] feat: add nixpacks.toml file --- nixpacks.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..3309213 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,12 @@ +[phases.build] +cmds = [ + "composer install --no-dev --prefer-dist --optimize-autoloader", + "npm ci", + "npm run build", + "php artisan config:clear", + "php artisan route:clear", + "php artisan view:clear" +] + +[start] +cmd = "php artisan serve --host=0.0.0.0 --port=80" \ No newline at end of file