This repository has no description
0

Configure Feed

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

core / bobbin / worker / wrangler.dev.jsonc
1.0 kB 48 lines
1{ 2 "$schema": "node_modules/wrangler/config-schema.json", 3 "name": "bobbin-svfe-dev", 4 "main": "src/index.ts", 5 "workers_dev": false, 6 "compatibility_date": "2026-03-07", 7 "observability": { 8 "enabled": true, 9 }, 10 "containers": [ 11 { 12 "class_name": "BobbinContainer", 13 "image": "../containerfiles/bobbin.Containerfile", 14 "image_build_context": "../../", 15 "instance_type": "standard-2", 16 "max_instances": 1, 17 }, 18 ], 19 "durable_objects": { 20 "bindings": [ 21 { 22 "name": "BOBBIN", 23 "class_name": "BobbinContainer", 24 }, 25 ], 26 }, 27 "migrations": [ 28 { 29 "tag": "v1", 30 "new_sqlite_classes": ["BobbinContainer"], 31 }, 32 ], 33 "ratelimits": [ 34 { 35 "name": "RATE_LIMITER", 36 "namespace_id": "1002", 37 "simple": { 38 "limit": 300, 39 "period": 60, 40 }, 41 }, 42 ], 43 "vars": { 44 "BOBBIN_HYDRANT_URL": "https://hyd.bob.oyster.cafe", 45 "BOBBIN_SLINGSHOT_URL": "https://slng.bob.oyster.cafe", 46 "BOBBIN_LOG": "info", 47 }, 48}