-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
79 lines (79 loc) · 1.7 KB
/
wrangler.jsonc
File metadata and controls
79 lines (79 loc) · 1.7 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "noteoverflow",
"main": ".open-next/worker.js",
"compatibility_date": "2025-06-01",
"compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"],
"preview_urls": true,
"workers_dev": true,
"assets": {
"binding": "ASSETS",
"directory": ".open-next/assets",
},
"observability": {
"logs": {
"enabled": true,
},
},
"d1_databases": [
{
"binding": "MAIN_DB",
"database_name": "noteoverflow",
"database_id": "0c4c1b6d-e9fa-4191-b87f-72fb7dd3fbfa",
},
],
"r2_buckets": [
{
"binding": "MAIN_BUCKET",
"bucket_name": "noteoverflow",
},
],
"kv_namespaces": [
{
"binding": "NEXT_INC_CACHE_KV",
"id": "966d0d6109f7487c819d70f64e72d4fd",
},
{
"binding": "TOPICAL_CACHE",
"id": "83f710e2d64c48e09b4606f6bd30cddb",
},
{
"binding": "SEMANTIC_SEARCH_CACHE",
"id": "df3bf5cd8d8c47d2bddba6cadeddb899",
},
],
"durable_objects": {
"bindings": [
{
"name": "NEXT_CACHE_DO_QUEUE",
"class_name": "DOQueueHandler",
},
{
"name": "NEXT_TAG_CACHE_DO_SHARDED",
"class_name": "DOShardedTagCache",
},
{
"name": "NEXT_CACHE_DO_PURGE",
"class_name": "BucketCachePurge",
},
],
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["DOQueueHandler", "DOShardedTagCache", "BucketCachePurge"],
},
],
"placement": {
"mode": "off",
},
"vectorize": [
{
"binding": "QUESTION_SEMANTIC_SEARCH_VECTORIZE",
"index_name": "question-semantic-search",
},
],
"ai": {
"binding": "AI",
},
}