Files
axum-tower-sessions-edge/wrangler.jsonc
2025-08-07 19:06:29 -04:00

27 lines
567 B
JSON

{
"$schema": "node_modules/wrangler/config-schema.json",
"compatibility_date": "2025-08-07",
"main": "build/worker/shim.mjs",
"name": "zitadel-session-worker",
"workers_dev": true,
"dev": {
"port": 3000,
"ip": "0.0.0.0"
},
"build": {
"command": "cargo install -q worker-build && worker-build --release"
},
"services": [
{
"binding": "PROXY_TARGET",
"service": "example-service"
}
],
"kv_namespaces": [
{
"binding": "KV_STORAGE",
"id": "your-id",
"preview_id": "your-preview-id"
}
]
}