Keep app.openseo.so routes out of the default Wrangler config so the public Deploy to Cloudflare button continues to work.
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
// Keep bindings in sync with wrangler.jsonc; only routes differ here.
|
|
"$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,
|
|
},
|
|
"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",
|
|
},
|
|
],
|
|
"kv_namespaces": [
|
|
{
|
|
"binding": "KV",
|
|
"id": "4abd52f3f2c549ac83cc2cb4ceec8620",
|
|
},
|
|
],
|
|
"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",
|
|
},
|
|
],
|
|
}
|