metatron-open-seo/wrangler.jsonc
Developer aefbf86e08
Some checks failed
CI / ci (push) Has been cancelled
CI / docker-build (push) Has been cancelled
Publish Docker image / docker (push) Has been cancelled
Upload sourcemaps / upload (push) Has been cancelled
Migrate project to Gitea
2026-09-08 21:08:29 +00:00

125 lines
2.1 KiB
JSON

{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "open-seo",
"main": "src/server.ts",
"compatibility_date": "2025-09-02",
"compatibility_flags": [
"nodejs_compat",
"global_fetch_strictly_public"
],
"observability": {
"enabled": true,
"traces": {
"enabled": true
}
},
"placement": {
"mode": "smart"
},
"workflows": [
{
"name": "site-audit-workflow",
"binding": "SITE_AUDIT_WORKFLOW",
"class_name": "SiteAuditWorkflow",
"script_name": "open-seo-audit"
},
{
"name": "rank-check-workflow",
"binding": "RANK_CHECK_WORKFLOW",
"class_name": "RankCheckWorkflow"
}
],
"durable_objects": {
"bindings": [
{
"name": "ONBOARDING_CHAT",
"class_name": "OnboardingChatAgent"
},
{
"name": "SAM_CHAT",
"class_name": "SamChatAgent"
}
]
},
"services": [
{
"binding": "AUDIT_ENGINE",
"service": "open-seo-audit"
}
],
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": [
"OnboardingChatAgent"
]
},
{
"tag": "v2",
"new_sqlite_classes": [
"SamChatAgent"
]
},
{
"tag": "v3",
"new_sqlite_classes": [
"AuditScratchpad"
]
},
{
"tag": "v4",
"deleted_classes": [
"AuditScratchpad"
]
}
],
"triggers": {
"crons": [
"*/5 * * * *",
"17 3 * * *"
]
},
"kv_namespaces": [
{
"binding": "KV",
"id": "4abd52f3f2c549ac83cc2cb4ceec8620"
},
{
"binding": "OAUTH_KV",
"id": "bd1759494309474a9b423b029967b0db"
}
],
"d1_databases": [
{
"binding": "DB",
"database_name": "open-seo",
"database_id": "37bee90a-e1aa-404f-b01e-b0d1d479bda1",
"migrations_dir": "drizzle"
}
],
"hyperdrive": [
{
"binding": "HYPERDRIVE",
"id": "local",
"localConnectionString": "postgres://openseo_user:Metatron2026@localhost:5432/openseo"
}
],
"r2_buckets": [
{
"bucket_name": "open-seo",
"binding": "R2"
}
]
}