diff --git a/wrangler.jsonc b/wrangler.jsonc new file mode 100644 index 0000000..0b1e4c5 --- /dev/null +++ b/wrangler.jsonc @@ -0,0 +1,31 @@ +// chittyproof — Cloudflare Workers configuration +{ + "name": "chittyproof", + "main": "src/worker.js", + "compatibility_date": "2025-09-01", + "compatibility_flags": [ + "nodejs_compat" + ], + "observability": { + "enabled": true + }, + "tail_consumers": [ + { + "service": "chittytrack" + } + ], + "routes": { + "pattern": "proof.chitty.cc/*", + "zone_name": "chitty.cc" + }, + "vars": { + "SERVICE_NAME": "chittyproof", + "SERVICE_VERSION": "1.0.0" + }, + "kv_namespaces": [ + { + "binding": "PROOF_KEY_CACHE", + "id": "TBD" + } + ] +}