Update wrangler.toml

This commit is contained in:
2025-09-07 18:23:04 -07:00
committed by GitHub
parent b73afe2365
commit 348a8dda41

View File

@@ -1,18 +1,18 @@
# For more details on how to configure Wrangler, refer to:
# https://developers.cloudflare.com/workers/wrangler/configuration/
name = "orp"
name = "chatsune"
main = "index.js"
compatibility_date = "2025-08-24"
# Durable Objects
[[migrations]]
tag = "v1"
new_sqlite_classes = ["MyDurableObject"]
new_sqlite_classes = ["ChatsuneDurableObject"]
[durable_objects]
bindings = [
{ name = "MY_DURABLE_OBJECT", class_name = "MyDurableObject" }
{ name = "CHATSUNE_DURABLE_OBJECT", class_name = "ChatsuneDurableObject" }
]
[observability]