mirror of
https://github.com/p-stream/backend.git
synced 2026-01-11 20:10:33 +00:00
18 lines
230 B
TOML
18 lines
230 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 = "node .output/server/index.mjs"
|