pstream-backend/nixpacks.toml
2025-04-13 17:30:56 -05:00

18 lines
245 B
TOML

[phases.setup]
commands = [
"npx prisma generate",
"npx prisma migrate deploy"
]
[phases.install]
commands = [
"npm install"
]
[phases.build]
commands = [
"npm run build"
]
[start]
cmd = "source .env && node .output/server/index.mjs"