-
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) · 882 Bytes
/
wrangler.jsonc
File metadata and controls
47 lines (47 loc) · 882 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
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"name": "website",
"main": ".open-next/worker.js",
"compatibility_date": "2025-09-01",
"compatibility_flags": [
"nodejs_compat"
],
"assets": {
"directory": ".open-next/assets",
"binding": "ASSETS"
},
"build": {
"command": "node scripts/generate-sitemap.mjs"
},
"observability": {
"logs": {
"enabled": true
}
},
"vars": {
"AUTH_URL": "https://accessdlsu.com",
"AUTH_TRUST_HOST": "true"
},
"env": {
"staging": {
"vars": {
"AUTH_URL": "https://staging.accessdlsu.com",
"AUTH_TRUST_HOST": "true"
}
}
},
"d1_databases": [
{
"binding": "DB",
"database_name": "access_dlsu_db",
"database_id": "8edf3d43-ed8b-45a4-9a7a-b7d1538769e3"
}
]
,
"triggers": {
"crons": ["0 0 * * *"]
}
}