wrangler.jsonc•1.83 kB
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "epic-me",
"compatibility_date": "2025-04-04",
"main": "./workers/app.ts",
"observability": {
"enabled": true,
},
"d1_databases": [
{
"binding": "EPIC_ME_DB",
"database_name": "epic-me",
"database_id": "ba71c9e2-1234-4f56-8abc-random-210ef",
"migrations_dir": "workers/db/migrations",
},
],
"kv_namespaces": [
{
"binding": "OAUTH_KV",
"id": "randomly-generated-id-1234567890abcdef",
"preview_id": "randomly-generated-id-0987654321abcdef",
},
],
/**
* Smart Placement
* Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
*/
// "placement": { "mode": "smart" },
/**
* Bindings
* Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
* databases, object storage, AI inference, real-time communication and more.
* https://developers.cloudflare.com/workers/runtime-apis/bindings/
*/
/**
* Environment Variables
* https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
*/
// "vars": { "MY_VARIABLE": "production_value" },
/**
* Note: Use secrets to store sensitive data.
* https://developers.cloudflare.com/workers/configuration/secrets/
*/
/**
* Static Assets
* https://developers.cloudflare.com/workers/static-assets/binding/
*/
// "assets": { "directory": "./public/", "binding": "ASSETS" },
/**
* Service Bindings (communicate between multiple Workers)
* https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
*/
// "services": [{ "binding": "MY_SERVICE", "service": "my-service" }]
}