/**
* 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": "my-app",
"main": "src/index.ts",
"compatibility_date": "2025-02-24",
"compatibility_flags": [
"nodejs_compat"
],
"observability": {
"enabled": true
},
"durable_objects": {
"bindings": [
{
"name": "Brain",
"class_name": "Brain"
},
{
"name": "Chat",
"class_name": "Chat"
},
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": [
"Brain"
]
},
{
"tag": "v1",
"new_sqlite_classes": [
"Chat"
]
}
}
/**
* 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": "my-app",
"main": "src/index.ts",
"compatibility_date": "2025-02-24",
"compatibility_flags": [
"nodejs_compat"
],
"observability": {
"enabled": true
},
"durable_objects": {
"bindings": [
{
"name": "Brain",
"class_name": "Brain"
},
{
"name": "Chat",
"class_name": "Chat"
},
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": [
"Brain"
]
},
{
"tag": "v1",
"new_sqlite_classes": [
"Chat"
]
}
}