Add URL management schema, route, and related updates for URLs feature

This commit is contained in:
Nikita
2025-12-24 15:10:38 -08:00
parent 7f6f7d2f37
commit 26fa0b0ec9
10 changed files with 1236 additions and 27 deletions

View File

@@ -7,6 +7,9 @@
"name": "fullstack-monorepo-template-worker",
"main": "src/index.ts",
"compatibility_date": "2025-09-06",
"compatibility_flags": [
"nodejs_compat"
],
/**
* Bindings
* Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
@@ -32,4 +35,15 @@
* https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
*/
// "services": [{ "binding": "MY_SERVICE", "service": "my-service" }]
/**
* Hyperdrive (PostgreSQL connection pooling)
* https://developers.cloudflare.com/hyperdrive/
*/
"hyperdrive": [
{
"binding": "HYPERDRIVE",
"id": "ab1f77b46587473ca6d42489678e34fd",
"localConnectionString": "postgresql://postgres:password@db.localtest.me:5433/electric"
}
]
}