mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 06:31:27 -07:00
29 lines
780 B
JSON
29 lines
780 B
JSON
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "accounts",
|
|
"main": "src/accounts.app.ts",
|
|
"compatibility_date": "2025-09-20",
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
// Shared D1 database. The `accounts` table schema/migrations are owned by the
|
|
// `auth` worker; this worker binds it read/write to look up and create accounts.
|
|
"d1_databases": [
|
|
{
|
|
"binding": "DB",
|
|
"database_name": "rec-rooms",
|
|
"database_id": "d44083e1-5bfe-4467-aa9a-f13c5c2496d5"
|
|
}
|
|
],
|
|
"logpush": false,
|
|
"upload_source_maps": true,
|
|
"observability": {
|
|
"logs": {
|
|
"enabled": true,
|
|
"head_sampling_rate": 1 // 100%
|
|
}
|
|
},
|
|
"vars": {
|
|
"ENVIRONMENT": "development", // overridden during deployment
|
|
"SENTRY_RELEASE": "unknown" // overridden during deployment
|
|
}
|
|
}
|