-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
42 lines (42 loc) · 1.02 KB
/
wrangler.jsonc
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "automation-bot",
"main": "./dist/index.js",
"assets": {
"directory": "./dist/frontend",
"not_found_handling": "single-page-application",
"run_worker_first": ["/api/*", "/auth/*", "/webhook"]
},
"compatibility_date": "2024-11-12",
"compatibility_flags": ["nodejs_compat"],
"routes": [
{
"pattern": "dash.fos.gg",
"custom_domain": true
}
],
"observability": {
"enabled": true
},
"triggers": {
"crons": ["0 * * * *"]
},
"d1_databases": [
{
"binding": "db",
"database_name": "automation-bot",
"database_id": "94dbae03-5785-4af4-88b9-7bd499b0e73e",
"migrations_dir": "migrations"
}
],
"kv_namespaces": [
{
"binding": "kv",
"id": "b7bc559d37be47f4833c658e5ebc9a69"
}
],
"queues": {
"producers": [{ "binding": "ISSUE_SYNC_QUEUE", "queue": "issue-sync-queue" }],
"consumers": [{ "queue": "issue-sync-queue", "max_batch_size": 5, "max_batch_timeout": 30, "max_retries": 3, "dead_letter_queue": "issue-sync-dlq" }]
}
}