Add build and start commands to nixpacks.toml

This commit is contained in:
Fernando
2026-05-07 23:36:16 -06:00
committed by GitHub
parent 964ed4bbd2
commit b22358e19d
+9
View File
@@ -0,0 +1,9 @@
[phases.build]
cmds = [
"composer install --no-dev --optimize-autoloader --no-scripts",
"npm ci",
"npm run build"
]
[start]
cmd = "php artisan serve --host=0.0.0.0 --port=80"