branch:
wrangler.jsonc
632 bytesRaw
{
  "name": "workflows-demo",
  "main": "src/server.ts",
  "compatibility_date": "2026-01-28",
  "compatibility_flags": ["nodejs_compat"],
  "assets": {
    "not_found_handling": "single-page-application",
    "run_worker_first": ["/agents/*"]
  },
  "durable_objects": {
    "bindings": [
      {
        "name": "TaskAgent",
        "class_name": "TaskAgent"
      }
    ]
  },
  "workflows": [
    {
      "name": "task-processing-workflow",
      "binding": "TASK_WORKFLOW",
      "class_name": "TaskProcessingWorkflow"
    }
  ],
  "migrations": [
    {
      "tag": "v1",
      "new_sqlite_classes": ["TaskAgent"]
    }
  ]
}