-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.json
More file actions
97 lines (97 loc) · 2.42 KB
/
wrangler.json
File metadata and controls
97 lines (97 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "sesh-tracker-com",
"main": "./src/worker/index.ts",
"compatibility_date": "2025-04-01",
"compatibility_flags": [
"nodejs_compat"
],
"observability": {
"enabled": true
},
"upload_source_maps": true,
"assets": {
"not_found_handling": "single-page-application"
},
"env": {
"production": {
"d1_databases": [
{
"binding": "DB",
"database_name": "sesh-tracker-new-prod",
"database_id": "fbaabd30-99b3-441b-83a1-597266937deb"
},
{
"binding": "SESHDBPROD",
"database_name": "sesh-tracker-new-prod",
"database_id": "fbaabd30-99b3-441b-83a1-597266937deb"
}
],
"vars": {
"API_ENV": "production",
"JWT_SECRET": "KRdjpPJr5PBXBjl4kNLborxvvoOiVJFo",
"AUTH_API_URL": "https://sesh-tracker.com/api/auth"
},
"kv_namespaces": [
{
"binding": "DASHBOARD_CACHE",
"id": "991a5d7a3fd14dbfbd0ecccc6bf8d730"
}
]
},
"development": {
"d1_databases": [
{
"binding": "DB",
"database_name": "sesh-tracker-new-prod",
"database_id": "fbaabd30-99b3-441b-83a1-597266937deb"
},
{
"binding": "SESHDBPROD",
"database_name": "sesh-tracker-new-prod",
"database_id": "fbaabd30-99b3-441b-83a1-597266937deb"
}
],
"vars": {
"API_ENV": "development",
"JWT_SECRET": "snluudqQYfmADaMCF03Qe5cxqVrcMVin",
"AUTH_API_URL": "https://sesh-tracker.com/api/auth"
},
"routes": [
{ "pattern": "localhost:8787/*", "zone_name": "localhost" }
],
"kv_namespaces": [
{
"binding": "DASHBOARD_CACHE",
"id": "991a5d7a3fd14dbfbd0ecccc6bf8d730"
}
]
}
},
"build": {
"command": "npm run build",
"watch_dir": "src"
},
"dev": {
"port": 8787,
"local_protocol": "http"
},
"d1_databases": [
{
"binding": "DB",
"database_name": "sesh-tracker-new-prod",
"database_id": "fbaabd30-99b3-441b-83a1-597266937deb"
},
{
"binding": "SESHDBPROD",
"database_name": "sesh-tracker-new-prod",
"database_id": "fbaabd30-99b3-441b-83a1-597266937deb"
}
],
"kv_namespaces": [
{
"binding": "DASHBOARD_CACHE",
"id": "991a5d7a3fd14dbfbd0ecccc6bf8d730"
}
]
}