-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
57 lines (57 loc) · 1.62 KB
/
wrangler.jsonc
File metadata and controls
57 lines (57 loc) · 1.62 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "auth",
"main": "src/index.ts",
"compatibility_date": "2025-10-16",
"compatibility_flags": ["nodejs_compat"],
"routes": [
{
"pattern": "auth.icssc.club",
"custom_domain": true,
},
],
"kv_namespaces": [
{
"binding": "AUTH_KV_AUTHCODES",
"id": "4d00717afb7c49c889720e25cd949836",
"remote": true,
},
{
"binding": "AUTH_KV_ACCESSTOKENS",
"id": "4a71f1474434440d9583b786cbec3ba2",
"remote": true,
},
{
"binding": "AUTH_KV_REFRESHTOKENS",
"id": "f7e61951e87a4ea7aace7da54a7e3d37",
"remote": true,
},
{
"binding": "AUTH_KV_SESSIONS",
"id": "6271ff01d1174d8ea1a7aa5b9a4d8e7c",
"remote": true,
},
{
"binding": "AUTH_KV_KEYS",
"id": "e59eb162e4bf46a4bd36ed7c9d2358a4",
"remote": true,
},
],
"vars": {
"ISSUER": "https://auth.icssc.club",
"TOKEN_TTL_SECONDS": 3600,
"CODE_TTL_SECONDS": 300,
"REFRESH_TTL_SECONDS": 2592000,
"SESSION_TTL_SECONDS": 1209600,
"GOOGLE_REDIRECT_URI": "https://auth.icssc.club/callback/google",
"GOOGLE_CLIENT_ID": "307305155433-2hojkb6tgl16c6qpsf40dfhst29av5hm.apps.googleusercontent.com",
},
"observability": {
"logs": {
"enabled": true,
"head_sampling_rate": 1,
"invocation_logs": true,
},
},
"keep_vars": true,
}