diff options
| author | soryu <soryu@soryu.co> | 2026-02-22 14:39:14 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-22 14:39:14 +0000 |
| commit | 6a34a6f3c423a7c57616762eb4cea2b7da52eaf3 (patch) | |
| tree | 7c596eac896918466e7ef3f149b02333fef09212 /makima/cloudflare-agent/wrangler.toml | |
| parent | 0523765af84492640928d571f481e17b26008b13 (diff) | |
| download | soryu-6a34a6f3c423a7c57616762eb4cea2b7da52eaf3.tar.gz soryu-6a34a6f3c423a7c57616762eb4cea2b7da52eaf3.zip | |
feat: Add daemon page with download binary and Cloudflare Agent setup (#77)
* feat: soryu-co/soryu - makima: Create DaemonList and DaemonDetail page components
* feat: soryu-co/soryu - makima: Add daemon page routes, CSS styles, and navigation
* feat: soryu-co/soryu - makima: Create daemon page with download and monitoring
* WIP: heartbeat checkpoint
* WIP: heartbeat checkpoint
* feat: soryu-co/soryu - makima: Integrate Cloudflare Agent setup into daemon page
Diffstat (limited to 'makima/cloudflare-agent/wrangler.toml')
| -rw-r--r-- | makima/cloudflare-agent/wrangler.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/makima/cloudflare-agent/wrangler.toml b/makima/cloudflare-agent/wrangler.toml new file mode 100644 index 0000000..11f5c66 --- /dev/null +++ b/makima/cloudflare-agent/wrangler.toml @@ -0,0 +1,20 @@ +name = "makima-agent" +main = "src/index.ts" +compatibility_date = "2024-12-01" +compatibility_flags = ["nodejs_compat"] + +[observability] +enabled = true + +[vars] +# Non-secret configuration — override via .dev.vars for local dev +# MAKIMA_SERVER_URL = "wss://api.makima.jp" + +[durable_objects] +bindings = [ + { name = "MAKIMA_AGENT", class_name = "MakimaAgent" } +] + +[[migrations]] +tag = "v1" +new_sqlite_classes = ["MakimaAgent"] |
