-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathwrangler.jsonc
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "makeshift-dev",
"account_id": "370c0a6a58a36a7e781de20d1a257ac2",
"main": "worker.ts",
"compatibility_date": "2026-06-21",
"compatibility_flags": [
"nodejs_compat",
"global_fetch_strictly_public"
],
"assets": {
"directory": ".open-next/assets",
"binding": "ASSETS"
},
"routes": [
{
"pattern": "makeshift-dev.digitalleft.org",
"custom_domain": true
},
{
"pattern": "digitalleft.org",
"custom_domain": true
}
],
"services": [
{
"binding": "WORKER_SELF_REFERENCE",
"service": "makeshift-dev"
}
],
"triggers": {
"crons": [
"0 1 * * *"
]
},
"d1_databases": [
{
"binding": "DB",
"database_name": "makeshift-dev",
"database_id": "98facb7b-4bd7-4630-9dab-f10e64d87c0f",
"migrations_dir": "drizzle/migrations"
}
],
"vars": {
"NEXTJS_ENV": "production",
"BETTER_AUTH_URL": "https://makeshift-dev.digitalleft.org",
"ALIYUN_DIRECTMAIL_ACCOUNT_NAME": "noreply@mail.digitalleft.org",
"ALIYUN_DIRECTMAIL_FROM_ALIAS": "草台编子识字班",
"ALIYUN_DIRECTMAIL_REGION_ID": "cn-hangzhou",
"ALIYUN_DIRECTMAIL_ENDPOINT": "https://dm.aliyuncs.com/"
}
}