-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
47 lines (47 loc) · 903 Bytes
/
wrangler.jsonc
File metadata and controls
47 lines (47 loc) · 903 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
44
45
46
47
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "wvfoia-sync",
"main": "./worker.mjs",
"routes": [
"l.abs.codes/wvfoia",
"l.abs.codes/wvfoia/*"
],
"workers_dev": false,
"keep_vars": true,
"compatibility_date": "2026-02-05",
"compatibility_flags": [
"nodejs_compat",
"global_fetch_strictly_public"
],
"assets": {
"binding": "ASSETS",
"directory": "./dist"
},
"d1_databases": [
{
"binding": "DB",
"database_name": "wvfoia_sync",
"database_id": "5bc2c80e-3c26-4d1c-aa1e-45d3186a5997"
}
],
"r2_buckets": [
{
"binding": "DB_EXPORTS",
"bucket_name": "wvfoia-sync"
}
],
"kv_namespaces": [
{
"binding": "DB_CACHE",
"id": "917d8b65e85e480f83de03ac9326b679"
}
],
"triggers": {
"crons": [
"0 9 * * *"
]
},
"observability": {
"enabled": true
}
}