Some checks failed
☁️ Cloudflare Deployment / Deploy Workers (push) Has been cancelled
🚂 Railway Deployment / Deploy to Railway (push) Has been cancelled
🌐 Unified Multi-Platform Deployment / 🔍 Prepare (push) Has been cancelled
▲ Vercel Deployment / Deploy to Vercel (push) Has been cancelled
🌐 Unified Multi-Platform Deployment / 🚀 Deploy all platforms (push) Has been cancelled
🔒 Security Scanning / 📦 Dependencies (push) Failing after 40s
🔒 Security Scanning / 🔐 Secrets (push) Failing after 1m34s
💾 Automated Backup / 📦 Backup infrastructure (push) Failing after 45s
🏥 Infrastructure Health Monitoring / 🔍 Health Check (push) Successful in 2s
24 lines
664 B
JSON
24 lines
664 B
JSON
{
|
|
"$schema": "https://railway.app/railway.schema.json",
|
|
"build": {
|
|
"builder": "NIXPACKS",
|
|
"buildCommand": "npm run build",
|
|
"watchPatterns": ["services/**", "core/**", "agents/**"]
|
|
},
|
|
"deploy": {
|
|
"numReplicas": 1,
|
|
"restartPolicyType": "ON_FAILURE",
|
|
"restartPolicyMaxRetries": 10,
|
|
"healthcheckPath": "/api/health",
|
|
"healthcheckTimeout": 100
|
|
},
|
|
"domains": [{"name": "blackroad-private.up.railway.app"}],
|
|
"env": {
|
|
"NODE_ENV": {"default": "production"},
|
|
"SERVICE_NAME": {"default": "blackroad-private"},
|
|
"SERVICE_ENV": {"default": "production"},
|
|
"PORT": {"default": "3000"}
|
|
},
|
|
"regions": ["us-west1"]
|
|
}
|