This repository has no description
0

Configure Feed

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

stigmergic / wrangler.jsonc
963 B 53 lines
1{ 2 "name": "stigmergic", 3 "main": "src/worker.ts", 4 "compatibility_date": "2026-05-12", 5 "compatibility_flags": ["nodejs_compat"], 6 7 // D1 for Contrail indexing 8 "d1_databases": [ 9 { 10 "binding": "DB", 11 "database_name": "stigmergic", 12 "database_id": "ed893bdb-b8ba-4d15-a9d6-29f5e7c7916f" 13 } 14 ], 15 16 // Container for strata analysis 17 "containers": [ 18 { 19 "name": "strata-analysis", 20 "class_name": "StrataContainer", 21 "image": "./container/Dockerfile", 22 "max_instances": 1 23 } 24 ], 25 26 "durable_objects": { 27 "bindings": [ 28 { 29 "name": "STRATA_CONTAINER", 30 "class_name": "StrataContainer" 31 } 32 ] 33 }, 34 35 "migrations": [ 36 { 37 "tag": "v1", 38 "new_sqlite_classes": ["StrataContainer"] 39 } 40 ], 41 42 "triggers": { 43 "crons": ["*/1 * * * *"] 44 }, 45 46 "routes": [ 47 { "pattern": "stigmergic.latha.org", "custom_domain": true } 48 ], 49 50 "assets": { 51 "directory": "public" 52 } 53}