Files
open-gsio/packages/cloudflare-workers/open-gsio/wrangler.jsonc
2025-07-17 13:47:50 -04:00

48 lines
975 B
JSON

{
"$schema": "../../../node_modules/wrangler/config-schema.json",
"name": "open-gsio",
"assets": {
"binding": "ASSETS",
"directory": "../../../packages/client/dist/client"
},
"dev": {
"ip": "localhost",
"port": 3001
},
"compatibility_date": "2025-05-28",
"compatibility_flags": [
"nodejs_compat"
],
"main": "main.ts",
"preview_urls": false,
"workers_dev": true,
"kv_namespaces": [
{
"binding": "KV_STORAGE",
// $ npx wrangler kv namespace create open-gsio
"id": "",
// $ npx wrangler kv namespace create open-gsio --preview
"preview_id": ""
}
],
"migrations": [
{
"new_classes": [
"ServerCoordinator"
],
"tag": "v1"
}
],
"durable_objects": {
"bindings": [
{
"class_name": "ServerCoordinator",
"name": "SERVER_COORDINATOR",
"script_name": "open-gsio"
}
]
},
"observability": {
"enabled": true
}
}