18 lines
202 B
TOML
18 lines
202 B
TOML
[phases.setup]
|
|
nixPkgs = [
|
|
"nodejs_20",
|
|
"npm-10_x",
|
|
"python3",
|
|
"make",
|
|
"gcc"
|
|
]
|
|
|
|
[phases.install]
|
|
cmds = ["npm install"]
|
|
|
|
[phases.build]
|
|
cmds = ["npm run build"]
|
|
|
|
[start]
|
|
cmd = "npm run start"
|