custom rooms

This commit is contained in:
Devin Zuczek
2026-07-05 20:20:09 -04:00
parent 05cca877b1
commit 5a2e3f6e1a
17 changed files with 15248 additions and 23 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "storage",
"main": "src/storage.app.ts",
"compatibility_date": "2025-09-20",
"compatibility_flags": ["nodejs_compat"],
"routes": [],
// Shared CDN R2 bucket (owned by the `cdn` worker). Uploads land here under a
// per-FileType subfolder; the `cdn` worker serves them back.
"r2_buckets": [
{
"binding": "CDN_ASSETS",
"bucket_name": "recflare-cdn"
}
],
"upload_source_maps": true,
"observability": {
"logs": {
"enabled": true,
"head_sampling_rate": 1 // 100%
}
},
"vars": {
"ENVIRONMENT": "development", // overridden during deployment
"SENTRY_RELEASE": "unknown" // overridden during deployment
}
}