fix(railway): change healthcheck path to /health

- Change from '/' to '/health' to avoid static file catch-all
- Root '/' is caught by serveStatic() in production
- /health endpoint returns JSON status correctly
This commit is contained in:
MrPiglr 2026-02-12 13:48:21 -07:00
parent 213efdeb71
commit 0caf77b542

View file

@ -6,7 +6,7 @@
}, },
"deploy": { "deploy": {
"startCommand": "npm start", "startCommand": "npm start",
"healthcheckPath": "/", "healthcheckPath": "/health",
"healthcheckTimeout": 100, "healthcheckTimeout": 100,
"restartPolicyType": "ON_FAILURE", "restartPolicyType": "ON_FAILURE",
"restartPolicyMaxRetries": 10 "restartPolicyMaxRetries": 10