branch:
wrangler.jsonc
569 bytesRaw
{
  "$schema": "../../node_modules/wrangler/config-schema.json",
  "name": "agents-email-agent",
  "main": "src/index.ts",
  "compatibility_date": "2026-01-28",
  "compatibility_flags": ["nodejs_compat"],
  "durable_objects": {
    "bindings": [
      {
        "name": "EmailAgent",
        "class_name": "EmailAgent"
      }
    ]
  },
  "migrations": [
    {
      "tag": "v1",
      "new_sqlite_classes": ["EmailAgent"]
    }
  ],
  "vars": {
    // For production, use `wrangler secret put EMAIL_SECRET` instead
    "EMAIL_SECRET": "change-me-in-production"
  }
}