-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
40 lines (40 loc) · 1.09 KB
/
wrangler.jsonc
File metadata and controls
40 lines (40 loc) · 1.09 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
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "blog-cloudflare-listen",
"main": ".open-next/worker.js",
"compatibility_date": "2025-08-23",
"compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"],
"assets": {
"binding": "ASSETS",
"directory": ".open-next/assets",
},
"observability": {
"enabled": true,
},
/**
* Smart Placement
* Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
*/
// "placement": { "mode": "smart" }
/**
* R2 Object Storage
* Used for storing fetched articles, generated audio, and summaries
*/
"r2_buckets": [
{
"binding": "BLOG_STORAGE",
"bucket_name": "blog-cloudflare-listen",
},
],
/**
* Cloudflare Workers AI
* Used for text-to-speech and text summarization
*/
"ai": {
"binding": "AI",
},
}