OneStart/railpack.json
2026-01-29 13:56:50 +07:00

29 lines
No EOL
517 B
JSON

{
"$schema": "https://schema.railpack.com",
"steps": {
"install": {
"commands": [
{
"cmd": "bun install --frozen-lockfile",
"customName": "Install dependencies"
}
]
},
"build": {
"inputs": [
{
"step": "install"
}
],
"commands": [
{
"cmd": "bun run nitro:build",
"customName": "Build server"
}
]
}
},
"deploy": {
"startCommand": "bun run nitro:serve"
}
}