-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathwrangler.json
More file actions
69 lines (69 loc) · 1.38 KB
/
wrangler.json
File metadata and controls
69 lines (69 loc) · 1.38 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
{
"$schema": "https://esm.sh/wrangler/config-schema.json",
"name": "contracts",
"compatibility_date": "2026-03-01",
"compatibility_flags": ["nodejs_compat"],
"main": "./src/index.tsx",
"keep_vars": true,
"workers_dev": true,
"preview_urls": true,
"logpush": true,
"vars": {
"WHITELISTED_ORIGINS": "https://tempo.xyz,https://*.tempo.xyz,https://*.porto.workers.dev"
},
"ratelimits": [
{
"name": "RATE_LIMITER",
"namespace_id": "1001",
"simple": {
"limit": 50,
"period": 10
}
}
],
"d1_databases": [
{
"binding": "CONTRACTS_DB",
"database_name": "CONTRACTS-DB",
"migrations_dir": "database/drizzle",
"database_id": "9e8d88e6-8bf0-40ae-860a-c1385dccaefc"
}
],
"containers": [
{
"max_instances": 20,
"image": "./Dockerfile",
"instance_type": "standard-3",
"name": "verification-container",
"class_name": "VerificationContainer"
}
],
"durable_objects": {
"bindings": [
{
"name": "VERIFICATION_CONTAINER",
"class_name": "VerificationContainer"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["VerificationContainer"]
}
],
"observability": {
"enabled": true,
"logs": {
"persist": true,
"enabled": true,
"head_sampling_rate": 1,
"invocation_logs": true,
"destinations": ["internal-logs"]
},
"traces": {
"enabled": true,
"destinations": ["internal-traces"]
}
}
}