-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
65 lines (65 loc) · 1.38 KB
/
wrangler.jsonc
File metadata and controls
65 lines (65 loc) · 1.38 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"main": "./custom-worker.ts",
"name": "khmercoders-web",
"compatibility_date": "2024-12-30",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"directory": ".open-next/assets",
"binding": "ASSETS"
},
"observability": {
"enabled": true,
"head_sampling_rate": 1
},
"triggers": {
"crons": [
"0 */2 * * *",
"*/5 * * * *",
"*/10 * * * *"
]
},
"r2_buckets": [
{
"binding": "USER_UPLOADS",
"bucket_name": "khmercoders-bucket"
}
],
"images": {
"binding": "IMAGES"
},
"d1_databases": [
{
"binding": "DB",
"database_name": "khmercoders",
"database_id": "8a80951e-1838-4a5d-b810-b113d1a3d9a1",
"migrations_table": "__drizzle_migrations",
"migrations_dir": "drizzle"
},
{
"binding": "DB_CHATBOT",
"database_name": "kcc-chatbot",
"database_id": "48058eec-0cb2-42e7-a166-6bc3cca3c686"
}
],
"kv_namespaces": [
{
"binding": "KV",
"id": "4a1cb635d683447c8b90a31a7e2c08e0"
}, {
"binding": "NEXT_INC_CACHE_KV",
"id": "e10cb5ca4dbc4c71aeda4d936b7bfc69"
}
],
"analytics_engine_datasets": [
{
"binding": "PROFILE_ANALYTICS",
"dataset": "profile_analytics"
}
],
"ai": {
"binding": "AI"
},
"keep_vars": true,
"keep_names": false
}