every.channel: sanitized baseline
This commit is contained in:
commit
897e556bea
258 changed files with 74298 additions and 0 deletions
37
deploy/cloudflare-worker/wrangler.toml
Normal file
37
deploy/cloudflare-worker/wrangler.toml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
name = "every-channel-site"
|
||||
main = "src/index.ts"
|
||||
compatibility_date = "2026-02-08"
|
||||
workers_dev = false
|
||||
account_id = "9a54fd76c3d5d9abac437382a9027e9b"
|
||||
|
||||
# Bind this worker to the every.channel zone.
|
||||
# This uses Workers Custom Domains (not "routes to an origin"), so it can serve the site without
|
||||
# an application server behind it.
|
||||
routes = [
|
||||
{ pattern = "every.channel", custom_domain = true },
|
||||
{ pattern = "www.every.channel", custom_domain = true },
|
||||
]
|
||||
|
||||
# Static assets built by Trunk (apps/tauri/ui -> apps/tauri/dist)
|
||||
[assets]
|
||||
directory = "../../apps/tauri/dist"
|
||||
|
||||
[[durable_objects.bindings]]
|
||||
name = "EC_API"
|
||||
class_name = "EcApiContainer"
|
||||
|
||||
[[durable_objects.bindings]]
|
||||
name = "EC_STREAM"
|
||||
class_name = "StreamRelayDO"
|
||||
|
||||
[[migrations]]
|
||||
tag = "v2"
|
||||
new_sqlite_classes = ["DirectoryDO"] # historical; safe to keep (namespace already created)
|
||||
|
||||
[[migrations]]
|
||||
tag = "v3"
|
||||
new_sqlite_classes = ["EcApiContainer"]
|
||||
|
||||
[[migrations]]
|
||||
tag = "v4"
|
||||
new_sqlite_classes = ["StreamRelayDO"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue