-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
52 lines (47 loc) · 1.14 KB
/
Copy pathwrangler.jsonc
File metadata and controls
52 lines (47 loc) · 1.14 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "daml-playground",
"compatibility_date": "2025-04-01",
"compatibility_flags": ["nodejs_compat"],
"main": "src/server.ts",
"routes": [
{ "pattern": "daml.run/*", "zone_name": "daml.run" }
],
"observability": {
"enabled": true
},
"d1_databases": [
{
"binding": "DB",
"database_name": "daml-playground-db",
"database_id": "4e1840b6-ad1a-4268-9a35-ba23872dea2f"
}
],
"containers": [
{
"name": "daml-sandbox",
"class_name": "SandboxContainer",
"image": "./sandbox/Dockerfile",
"max_instances": 10,
"instance_type": {
"vcpu": 1,
"memory_mib": 4096,
"disk_mb": 8000
},
"rollout_active_grace_period": 0
}
],
"durable_objects": {
"bindings": [
{ "name": "SESSION", "class_name": "SessionDO" },
{ "name": "SANDBOX", "class_name": "SandboxContainer" },
{ "name": "GATEKEEPER", "class_name": "GatekeeperDO" }
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["SessionDO", "SandboxContainer", "GatekeeperDO"]
}
]
}