MyStuff/my-favorites-app/nixpacks.toml
2025-04-27 21:33:23 +02:00

17 lines
228 B
TOML

[phases.setup]
nixPkgs = ["nodejs", "nodejs.pkgs.pnpm"]
[phases.install]
cmds = ["npm ci"]
[phases.build]
cmds = ["npm run build"]
[start]
cmd = "npm start"
[variables]
NODE_ENV = "production"
PORT = "3000"
HOST = "0.0.0.0"