1
0
Files
kobopatch-webui/nixpacks.toml
Nico Verbruggen 347b4f654a
All checks were successful
Build and test project / build-and-test (push) Successful in 1m29s
Use nginx to serve the website
2026-03-19 19:56:24 +01:00

20 lines
442 B
TOML

providers = ["node"]
[phases.setup]
nixPkgs = ["git", "curl", "zip", "gnutar", "nginx"]
paths = ["/usr/local/go/bin"]
cmds = [
"curl -sSfL https://go.dev/dl/go1.23.12.linux-amd64.tar.gz | tar -xz -C /usr/local",
]
[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 = "./start.sh"