metatron-open-seo/wrangler.jsonc

57 lines
1.4 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"],
"observability": {
"enabled": true,
},
// Uncomment when deploying to the openseo.so Cloudflare account. Self-hosters
// should leave this commented (or replace with their own zone) — otherwise
// `wrangler deploy` fails with "Could not find zone for app.openseo.so".
// "routes": [
// { "pattern": "app.openseo.so", "custom_domain": true },
// { "pattern": "www.app.openseo.so", "custom_domain": true },
// ],
"workflows": [
{
"name": "site-audit-workflow",
"binding": "SITE_AUDIT_WORKFLOW",
"class_name": "SiteAuditWorkflow",
},
{
"name": "rank-check-workflow",
"binding": "RANK_CHECK_WORKFLOW",
"class_name": "RankCheckWorkflow",
},
],
"triggers": {
"crons": ["*/15 * * * *"],
},
"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",
},
],
"r2_buckets": [
{
"bucket_name": "open-seo",
"binding": "R2",
},
],
}