-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
50 lines (50 loc) · 1.03 KB
/
wrangler.jsonc
File metadata and controls
50 lines (50 loc) · 1.03 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "addons-site",
"main": "src/worker.tsx",
"compatibility_date": "2025-05-07",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"binding": "ASSETS"
},
"observability": {
"enabled": true
},
"durable_objects": {
"bindings": [
{
"name": "SESSION_DURABLE_OBJECT",
"class_name": "SessionDurableObject"
}
]
},
"vars": {
"WEBAUTHN_APP_NAME": "__change_me__"
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["SessionDurableObject"]
}
],
"d1_databases": [
// rwsdk account
{
"binding": "DB",
"database_name": "shareware",
"database_id": "2b3a0f83-4010-45a3-a9f7-8f4d4fe923d4"
}
// Amy's account
// {
// "binding": "DB",
// "database_name": "addons-site-sweet-cattle",
// "database_id": "6ec9506e-ecf6-413f-b5a3-80327c9cf1ad"
// }
],
"r2_buckets": [
{
"bucket_name": "shareware",
"binding": "R2"
}
]
}