-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
29 lines (25 loc) · 977 Bytes
/
Copy pathwrangler.jsonc
File metadata and controls
29 lines (25 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Cloudflare Worker configuration — this file is the source of truth.
// The dashboard is read-only by convention: anything changed there is
// invisible to git and overwritten by the next deploy.
{
// Named "api" because the custom domain binds to the Worker by name
// and api.autonomi.com is the long-term identity of this host
"name": "api",
"main": "worker/index.js",
// Autonomi account (owns the autonomi.com zone)
"account_id": "be82e7c0b8539ee42440087b8f2c58f5",
"compatibility_date": "2026-08-26",
// Staging URL: https://api.autonomi.workers.dev
"workers_dev": true,
"observability": {
"enabled": true
},
"kv_namespaces": [
{ "binding": "PRICING_KV", "id": "c4c210fcdf1342678f9fed3710c42486" }
],
// Production domain — enabled by a reviewed commit, never from the
// dashboard. Claims api.autonomi.com away from the former Vercel CNAME.
"routes": [
{ "pattern": "api.autonomi.com", "custom_domain": true }
]
}