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
41 lines
788 B
TOML
41 lines
788 B
TOML
# 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 * * *"]
|