-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
46 lines (46 loc) · 727 Bytes
/
wrangler.jsonc
File metadata and controls
46 lines (46 loc) · 727 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "universal-codemode-mcp",
"main": "src/index.ts",
"compatibility_date": "2026-01-12",
"compatibility_flags": [
"nodejs_compat"
],
"observability": {
"logs": {
"enabled": true
}
},
"triggers": {
"crons": [
"0 3 * * 1"
]
},
"r2_buckets": [
{
"binding": "SPEC_BUCKET",
"bucket_name": "codemode-specs"
}
],
"kv_namespaces": [
{
"binding": "SPEC_CACHE",
"id": "62762f4d902845adb323a2596c7397c3"
}
],
"worker_loaders": [
{
"binding": "LOADER"
}
],
"routes": [
{
"pattern": "cm.dee.ad/*",
"zone_name": "dee.ad"
}
],
"vars": {
"MAX_EXECUTE_REQUESTS": "20",
"MAX_RESPONSE_CHARS": "40000"
}
}