-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
56 lines (56 loc) · 1.11 KB
/
wrangler.jsonc
File metadata and controls
56 lines (56 loc) · 1.11 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "cloud-claw",
"main": "./src/index.ts",
"account_id": "683392e016d0a9c5446a8c648da62ce6",
"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",
},
"browser": {
"binding": "BROWSER",
"remote": true,
},
"containers": [
{
"name": "cloud-claw-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",
},
],
}