forked from cloudflare/agentic-inbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
71 lines (71 loc) · 1.23 KB
/
Copy pathwrangler.jsonc
File metadata and controls
71 lines (71 loc) · 1.23 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "agentic-inbox",
"compatibility_date": "2025-11-28",
"main": "./workers/app.ts",
"observability": {
"enabled": true
},
"compatibility_flags": [
"nodejs_compat"
],
"vars": {
// Production deploys must also define POLICY_AUD and TEAM_DOMAIN.
// TEAM_DOMAIN may be the base Access URL or the full /cdn-cgi/access/certs URL.
// The worker now fails closed outside local development if Access is not configured.
"DOMAINS": "example.com",
"EMAIL_ADDRESSES": []
},
"send_email": [
{
"name": "EMAIL",
"remote": true
}
],
"r2_buckets": [
{
"binding": "BUCKET",
"bucket_name": "agentic-inbox",
"preview_bucket_name": "agentic-inbox"
}
],
"ai": {
"binding": "AI"
},
"durable_objects": {
"bindings": [
{
"name": "MAILBOX",
"class_name": "MailboxDO"
},
{
"name": "EMAIL_AGENT",
"class_name": "EmailAgent"
},
{
"name": "EMAIL_MCP",
"class_name": "EmailMCP"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": [
"MailboxDO"
]
},
{
"tag": "v2",
"new_sqlite_classes": [
"EmailAgent"
]
},
{
"tag": "v3",
"new_sqlite_classes": [
"EmailMCP"
]
}
]
}