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