This repository has no description
0

Configure Feed

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

stigmergic / wrangler.jsonc
743 B 40 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 "migrations": [ 17 { 18 "tag": "v1", 19 "new_sqlite_classes": ["StrataContainer"] 20 }, 21 { 22 "tag": "v2", 23 "deleted_classes": ["StrataContainer"] 24 } 25 ], 26 27 "triggers": { 28 "crons": ["*/1 * * * *"] 29 }, 30 31 "routes": [ 32 { "pattern": "stigmergic.latha.org", "custom_domain": true } 33 ], 34 35 "assets": { 36 "directory": "public", 37 "binding": "ASSETS", 38 "run_worker_first": ["/*"] 39 } 40}