mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
- Change from '/' to '/health' to avoid static file catch-all - Root '/' is caught by serveStatic() in production - /health endpoint returns JSON status correctly
14 lines
345 B
JSON
14 lines
345 B
JSON
{
|
|
"$schema": "https://railway.app/railway.schema.json",
|
|
"build": {
|
|
"builder": "NIXPACKS",
|
|
"buildCommand": "npm install && npm run build"
|
|
},
|
|
"deploy": {
|
|
"startCommand": "npm start",
|
|
"healthcheckPath": "/health",
|
|
"healthcheckTimeout": 100,
|
|
"restartPolicyType": "ON_FAILURE",
|
|
"restartPolicyMaxRetries": 10
|
|
}
|
|
}
|