this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 26 lines 680 B view raw
1/** 2 * For more details on how to configure Wrangler, refer to: 3 * https://developers.cloudflare.com/workers/wrangler/configuration/ 4 */ 5{ 6 "$schema": "node_modules/wrangler/config-schema.json", 7 "name": "budget-edge", 8 "main": "src/index.ts", 9 "compatibility_date": "2025-05-14", 10 "compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"], 11 "observability": { 12 "enabled": true, 13 }, 14 "placement": { "mode": "smart" }, 15 "kv_namespaces": [ 16 { 17 "binding": "LIST_CACHE", 18 "id": "47ad2f322ad1433692d34804b9e975b2", 19 }, 20 ], 21 "vars": { 22 "PURPOSE_TAB": "Purposes", 23 "ACCOUNT_TAB": "Accounts", 24 "TX_RANGE": "Transactions!A2:G", 25 }, 26}