-
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) · 934 Bytes
/
wrangler.jsonc
File metadata and controls
34 lines (34 loc) · 934 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": "ncrmro-website",
"main": ".open-next/worker.js",
"compatibility_date": "2025-03-01",
"compatibility_flags": [
"nodejs_compat",
"global_fetch_strictly_public"
],
"observability": {
"enabled": true
},
"assets": {
"binding": "ASSETS",
"directory": ".open-next/assets",
"run_worker_first": [
"/ingest/*"
]
},
"vars": {
"TURSO_DATABASE_URL": "libsql://ncrmro-website-production-ncrmro.aws-us-east-2.turso.io",
"NEXT_PUBLIC_R2_DOMAIN": "r2.ncrmro.com",
"AUTH_TRUST_HOST": "true",
"AUTH_REDIRECT_PROXY_URL": "https://ncrmro.com/api/auth"
},
"r2_buckets": [
{
"binding": "UPLOADS",
"bucket_name": "ncrmro-website-uploads"
}
]
// Note: Sensitive variables like TURSO_DATABASE_URL, TURSO_AUTH_TOKEN,
// and SYNC_AUTH_TOKEN should be set via wrangler secret or GitHub Actions
}