Initial commit — RoadCode import
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

This commit is contained in:
2026-03-08 20:04:29 -05:00
commit 4acdf1f8ac
20 changed files with 3586 additions and 0 deletions

23
railway.json Normal file
View File

@@ -0,0 +1,23 @@
{
"$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"]
}