1
0
Files
kobopatch-webui/nixpacks.toml
Nico Verbruggen 4e004f8360
All checks were successful
Build and test project / build-and-test (push) Successful in 1m25s
Set fixed port number
2026-03-19 22:02:25 +01:00

17 lines
466 B
TOML

providers = ["node"]
[phases.setup]
nixPkgs = ["git", "curl", "zip", "gnutar", "nginx", "nodejs", "gettext"]
paths = ["/usr/local/go/bin"]
[phases.build]
cmds = [
"cd kobopatch-wasm && bash setup.sh",
"cd kobopatch-wasm && bash build.sh",
"cd nickelmenu && bash setup.sh",
"cd web && npm install && npm run build",
]
[start]
cmd = "PORT=8080 envsubst '${PORT}' < nginx.conf.template > /tmp/nginx.conf && nginx -c /tmp/nginx.conf -g 'daemon off;'"