-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
43 lines (38 loc) · 739 Bytes
/
wrangler.jsonc
File metadata and controls
43 lines (38 loc) · 739 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "cyrusworker",
"main": "src/index.ts",
"compatibility_date": "2025-01-30",
"compatibility_flags": ["nodejs_compat"],
"containers": [
{
"class_name": "Sandbox",
"image": "./Dockerfile",
"instance_type": "standard-1",
"max_instances": 5
}
],
"durable_objects": {
"bindings": [
{
"class_name": "Sandbox",
"name": "Sandbox"
}
]
},
"migrations": [
{
"new_sqlite_classes": ["Sandbox"],
"tag": "v1"
}
],
"r2_buckets": [
{
"binding": "CYRUS_STORAGE",
"bucket_name": "cyrusworker-data"
}
],
"vars": {
"SANDBOX_SLEEP_AFTER": "never"
}
}