29 lines
No EOL
517 B
JSON
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"
|
|
}
|
|
} |