33 lines
794 B
TOML
33 lines
794 B
TOML
main = "worker/worker.ts"
|
|
compatibility_date = "2024-07-01"
|
|
name = "jeffemmett-canvas"
|
|
account_id = "0e7b3338d5278ed1b148e6456b940913"
|
|
zone_id = "45c200f8dc2a01852e41b9bb09eb7359"
|
|
|
|
[vars]
|
|
# Environment variables are managed in Cloudflare Dashboard
|
|
# Workers & Pages → jeffemmett-canvas → Settings → Variables
|
|
|
|
[dev]
|
|
port = 5172
|
|
ip = "0.0.0.0"
|
|
local_protocol = "http"
|
|
upstream_protocol = "https"
|
|
|
|
[durable_objects]
|
|
bindings = [
|
|
{ name = "TLDRAW_DURABLE_OBJECT", class_name = "jeffemmett-canvas_TldrawDurableObject" },
|
|
]
|
|
|
|
[[migrations]]
|
|
tag = "v1"
|
|
new_classes = ["jeffemmett-canvas_TldrawDurableObject"]
|
|
|
|
[[r2_buckets]]
|
|
binding = 'TLDRAW_BUCKET'
|
|
bucket_name = 'jeffemmett-canvas'
|
|
preview_bucket_name = 'jeffemmett-canvas-preview'
|
|
|
|
[observability]
|
|
enabled = true
|
|
head_sampling_rate = 1 |