16 lines
178 B
TOML
16 lines
178 B
TOML
[phases.setup]
|
|
nixPkgs = [
|
|
"nodejs_20",
|
|
"gcc",
|
|
"python3"
|
|
]
|
|
|
|
[phases.install]
|
|
cmds = ["npm install"]
|
|
|
|
[phases.build]
|
|
cmds = ["npm run build"]
|
|
|
|
[start]
|
|
cmd = "npm run start"
|