-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
51 lines (51 loc) · 1023 Bytes
/
wrangler.jsonc
File metadata and controls
51 lines (51 loc) · 1023 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
47
48
49
50
51
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "cloud-code",
"main": "./src/index.ts",
"compatibility_date": "2026-01-01",
"compatibility_flags": ["nodejs_compat"],
"minify": true,
"upload_source_maps": true,
"keep_vars": true,
"observability": {
"traces": {
"enabled": true,
},
"logs": {
"enabled": true,
},
},
"placement": {
"region": "aws:us-west-2",
},
"containers": [
{
"name": "cloud-code-container",
"class_name": "AgentContainer",
"image": "./Dockerfile",
"instance_type": {
"vcpu": 1,
"memory_mib": 4096,
"disk_mb": 8192,
},
"max_instances": 1,
"constraints": {
"region": ["wnam"],
},
},
],
"durable_objects": {
"bindings": [
{
"class_name": "AgentContainer",
"name": "AGENT_CONTAINER",
},
],
},
"migrations": [
{
"new_sqlite_classes": ["AgentContainer"],
"tag": "container",
},
],
}