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

40
wrangler.toml Normal file
View File

@@ -0,0 +1,40 @@
# Cloudflare Workers Configuration
name = "blackroad-private"
main = "src/index.js"
compatibility_date = "2024-01-01"
workers_dev = true
account_id = ""
zone_id = ""
[[kv_namespaces]]
binding = "BLACKROAD_PRIVATE_KV"
id = ""
[[d1_databases]]
binding = "BLACKROAD_PRIVATE_DB"
database_name = "blackroad-private"
database_id = ""
[[r2_buckets]]
binding = "BLACKROAD_PRIVATE_STORAGE"
bucket_name = "blackroad-private"
[env.production]
name = "blackroad-private-production"
route = { pattern = "private.blackroad.systems/*", zone_name = "blackroad.systems" }
[env.staging]
name = "blackroad-private-staging"
[vars]
ENVIRONMENT = "production"
SERVICE_NAME = "blackroad-private"
LOG_LEVEL = "info"
[build]
command = "npm run build"
watch_dir = "src"
[triggers]
crons = ["0 */6 * * *"]