-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.e2e.jsonc
More file actions
118 lines (118 loc) · 3.17 KB
/
Copy pathwrangler.e2e.jsonc
File metadata and controls
118 lines (118 loc) · 3.17 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "life-ustc-e2e",
"main": "src/worker.js",
"compatibility_date": "2026-07-23",
"compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"],
"exports": {
"PublicSsr": {
"type": "worker",
"cache": {
"enabled": true
}
}
},
"vars": {
"NODE_ENV": "test",
"APP_PUBLIC_ORIGIN": "http://localhost:3000",
"AUTH_SECRET": "e2e-dev-secret-not-for-production",
"E2E_DEBUG_AUTH": "1",
"DEV_DEBUG_USERNAME": "dev-user",
"DEV_DEBUG_NAME": "Dev User",
"DEV_DEBUG_EMAIL": "[email protected]",
"DEV_DEBUG_PASSWORD": "dev-debug-password",
"DEV_ADMIN_USERNAME": "dev-admin",
"DEV_ADMIN_NAME": "校园管理员",
"DEV_ADMIN_EMAIL": "[email protected]",
"DEV_ADMIN_PASSWORD": "dev-admin-password",
"UPLOAD_TOTAL_QUOTA_MB": "100"
},
"assets": {
"directory": ".svelte-kit/cloudflare",
"binding": "ASSETS",
"run_worker_first": [
"/*",
"!/_app/*",
"!/images/*",
"!/static/*",
"!/openapi.generated.json"
]
},
"observability": {
"enabled": false
},
"alias": {
"life-ustc-sveltekit-worker": "./.svelte-kit/cloudflare/_sveltekit.js",
"kysely": "./src/lib/cloudflare/kysely-worker-shim.ts",
"@better-auth/kysely-adapter/dist/bun-sqlite-dialect-DzNwOpKv.mjs": "./src/lib/cloudflare/empty-optional-module.ts",
"@better-auth/kysely-adapter/dist/d1-sqlite-dialect-C2B7YsIT.mjs": "./src/lib/cloudflare/empty-optional-module.ts",
"@better-auth/kysely-adapter/dist/node-sqlite-dialect.mjs": "./src/lib/cloudflare/empty-optional-module.ts"
},
"hyperdrive": [
{
"binding": "HYPERDRIVE",
"id": "local",
"localConnectionString": "postgresql://postgres:[email protected]:5432/life_ustc_dev"
},
{
"binding": "HYPERDRIVE_AUTH",
"id": "local-auth",
"localConnectionString": "postgresql://postgres:[email protected]:5432/life_ustc_dev"
},
{
"binding": "HYPERDRIVE_MAINTENANCE",
"id": "local-maintenance",
"localConnectionString": "postgresql://postgres:[email protected]:5432/life_ustc_dev"
}
],
"kv_namespaces": [
{
"binding": "CALENDAR_EXPORTS",
"id": "c7411aac14fa45a6bb6f8b8f6b8e1a1d"
},
{
"binding": "CATALOG_DETAIL_CORE",
"id": "cd40f139a6c14613adba65dc294dc168"
}
],
"ratelimits": [
{
"name": "USER_WRITE_RATE_LIMITER",
"namespace_id": "414001",
"simple": {
"limit": 10000,
"period": 60
}
},
{
"name": "USER_BATCH_WRITE_RATE_LIMITER",
"namespace_id": "414002",
"simple": {
"limit": 10000,
"period": 60
}
}
],
"r2_buckets": [
{
"binding": "R2_UPLOADS",
"bucket_name": "life-ustc"
}
],
"queues": {
"producers": [
{
"binding": "CALENDAR_EXPORT_REBUILD",
"queue": "life-ustc-calendar-export-rebuild"
}
],
"consumers": [
{
"queue": "life-ustc-calendar-export-rebuild",
"max_batch_size": 5,
"max_retries": 3,
"dead_letter_queue": "life-ustc-calendar-export-rebuild-dlq"
}
]
}
}