-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
56 lines (56 loc) · 1.75 KB
/
Copy pathwrangler.jsonc
File metadata and controls
56 lines (56 loc) · 1.75 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
{
// Build/local config. The production Durable Object queue binding lives in
// wrangler.production.jsonc so Wrangler's build-time platform proxy does not
// warn before OpenNext has generated the DO exports.
"$schema": "./node_modules/wrangler/config-schema.json",
"main": ".open-next/worker.js",
"name": "agent-postmortem",
"compatibility_date": "2026-06-06",
"compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"],
"workers_dev": true,
"routes": [
{
"pattern": "agentpostmortem.com",
"custom_domain": true,
},
{
"pattern": "www.agentpostmortem.com",
"custom_domain": true,
},
],
"assets": {
"directory": ".open-next/assets",
"binding": "ASSETS",
},
"observability": {
"enabled": true,
"head_sampling_rate": 1,
},
"vars": {
"NEXT_PUBLIC_SITE_URL": "https://agentpostmortem.com",
"NEXT_PUBLIC_SUPABASE_URL": "https://uqkveghvmrzjvdpxlhty.supabase.co",
"NEXT_PUBLIC_SUPABASE_ANON_KEY": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InVxa3ZlZ2h2bXJ6anZkcHhsaHR5Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzczNjg3ODAsImV4cCI6MjA5Mjk0NDc4MH0.t4zH46dOezcZTJpC0TtgpGXQPZbMLqsdqDRe7-e9yyE",
"R2_ACCOUNT_ID": "e271625b8afba8d76b4920ff58e7cebc",
"R2_BUCKET_NAME": "agent-postmortem",
"R2_PUBLIC_URL": "https://cdn.agentpostmortem.com",
"NEXT_PUBLIC_R2_PUBLIC_URL": "https://cdn.agentpostmortem.com",
},
"services": [
{
"binding": "WORKER_SELF_REFERENCE",
"service": "agent-postmortem",
},
],
"r2_buckets": [
{
"binding": "R2_BUCKET",
"bucket_name": "agent-postmortem",
},
],
"kv_namespaces": [
{
"binding": "NEXT_INC_CACHE_KV",
"id": "f284bf3f093e45aeab37deac73df9f9f",
},
],
}