-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
34 lines (34 loc) · 963 Bytes
/
wrangler.jsonc
File metadata and controls
34 lines (34 loc) · 963 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "neutralpress-cloud-panel",
"main": ".open-next/worker.js",
"compatibility_date": "2026-02-19",
"compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"],
"assets": {
"directory": ".open-next/assets",
"binding": "ASSETS",
},
"services": [
{
"binding": "WORKER_SELF_REFERENCE",
"service": "neutralpress-cloud-panel",
},
],
"d1_databases": [
{
"binding": "DB",
"database_name": "neutralpress-cloud",
"database_id": "e7dea83a-9c7b-492e-903e-5dfc565b5ea1",
},
],
"vars": {
"PANEL_TITLE": "NeutralPress Cloud Observatory",
"PANEL_TIMEZONE": "UTC+8",
// Turnstile: 填入 site key 启用验证码,留空则跳过
// TURNSTILE_SECRET_KEY 通过 `wrangler secret put` 配置
"NEXT_PUBLIC_TURNSTILE_SITE_KEY": "0x4AAAAAACfm6YbmaCAHC_-d",
},
"observability": {
"enabled": true,
},
}