-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
55 lines (55 loc) · 1.39 KB
/
wrangler.jsonc
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "worker-poc",
"compatibility_date": "2025-08-03",
"main": "./src/index.ts",
"vars": {
"WEBHOOK_USERNAME": "",
"WEBHOOK_PASSWORD": "",
"DRIVE_API_URL": "",
"DRIVE_BUCKET_ID": "",
"DRIVE_AUTH_TOKEN": ""
},
"r2_buckets": [
{
"bucket_name": "email-storage",
"binding": "EMAIL_STORAGE",
"remote": true
},
{
"bucket_name": "email-storage",
"binding": "email_storage",
"remote": true
}
],
"d1_databases": [
{
"binding": "DB",
"database_name": "email-inbox",
"database_id": "e9133b5a-f172-4dae-b9ab-a4c4068c2e18",
"remote": true
}
],
"queues": {
"producers": [
{
"queue": "email-process-queue",
"binding": "EMAIL_QUEUE"
}
],
"consumers": [
{
"queue": "email-process-queue",
"max_batch_size": 3,
"max_batch_timeout": 30,
"max_retries": 3,
"dead_letter_queue": "email-dlq"
},
{
"queue": "email-dlq",
"max_batch_size": 10,
"max_batch_timeout": 30
}
]
}
}