Files
website/railpack.json
T
2026-06-29 21:10:31 -04:00

31 lines
637 B
JSON

{
"$schema": "https://railpack.com",
"steps": {
"install": {
"inputs": [
{
"context": "."
}
],
"commands": [
"npm install"
]
},
"build": {
"inputs": [
{
"step": "install"
},
{
"context": "."
}
],
"commands": [
"npm run build"
]
}
},
"deploy": {
"startCommand": "npx serve dist --port 3000"
}
}