-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwrangler.json
More file actions
53 lines (53 loc) · 1.22 KB
/
Copy pathwrangler.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "demo-coveragetracker-dev",
"main": "src/index.ts",
"send_metrics": false,
"compatibility_date": "2026-06-25",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"directory": "./dashboard/build",
"binding": "ASSETS",
"not_found_handling": "single-page-application",
"run_worker_first": ["/api/*"]
},
"observability": { "enabled": true },
"triggers": { "crons": ["30 6 * * *"] },
"d1_databases": [
{
"binding": "DB",
"database_name": "coverage-demo",
"migrations_dir": "migrations"
}
],
"secrets": {
"required": [
"GITHUB_APP_ID",
"GITHUB_APP_CLIENT_ID",
"GITHUB_APP_PRIVATE_KEY",
"GITHUB_WEBHOOK_SECRET",
"CF_ACCESS_AUD",
"CF_ACCESS_TEAM_DOMAIN"
]
},
"build": {
"command": "npm --prefix dashboard clean-install && npm --prefix dashboard run build"
},
"env": {
"dev": {
"d1_databases": [
{
"binding": "DB",
"database_name": "coverage",
"migrations_dir": "migrations"
}
],
"secrets": {
"required": []
},
"vars": {
"ENVIRONMENT": "development"
}
}
}
}