mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 14:41:28 -07:00
34 lines
819 B
JSON
34 lines
819 B
JSON
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "match",
|
|
"main": "src/match.app.ts",
|
|
"compatibility_date": "2025-09-20",
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
"routes": [
|
|
{
|
|
"pattern": "match.rec.djdevin.net",
|
|
"custom_domain": true
|
|
}
|
|
],
|
|
// Per-player presence store (room instance the player is currently in).
|
|
// Create with `wrangler kv namespace create MATCH_PRESENCE` and set the id.
|
|
"kv_namespaces": [
|
|
{
|
|
"binding": "MATCH_PRESENCE",
|
|
"id": "9f53f04b7dd244658d59f515a14748b6"
|
|
}
|
|
],
|
|
"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
|
|
}
|
|
}
|