-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
43 lines (43 loc) · 1.18 KB
/
Copy pathwrangler.jsonc
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "control",
"account_id": "3ebe60b8bb090efeda7702aff60769bb",
"main": "src/worker.ts",
"compatibility_date": "2026-04-16",
"compatibility_flags": ["nodejs_compat"],
// Don't wipe dashboard-set plaintext vars on deploy (secrets are never wiped regardless).
"keep_vars": true,
"observability": {
"enabled": true
},
"assets": {
"binding": "ASSETS",
"directory": ".svelte-kit/cloudflare"
},
// Production origin (Better Auth baseURL, JWT issuer/audience, and the DO's JWKS fetch).
// Local dev overrides this with ORIGIN in .dev.vars (http://localhost:8787).
"vars": {
"ORIGIN": "https://control.syntax.fm",
"ADMIN_GITHUB_USERNAMES": "stolinski,wesbos,w3cj,randyrektor"
},
"d1_databases": [
{
"binding": "DB",
"database_name": "control",
"database_id": "4ee967fa-4f00-40ac-8d37-b4ff7a98431c",
"migrations_dir": "drizzle/migrations"
}
],
"durable_objects": {
"bindings": [
{ "name": "SHOW_ROOM", "class_name": "ShowRoom" },
{ "name": "SHOW_DIRECTORY", "class_name": "ShowDirectory" }
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["ShowRoom", "ShowDirectory"]
}
]
}