57fb7a0650
Sets up preview deploys etc. for bemo worker. There's enough going on here that I wanted to make it its own PR. I'll rework david's spike on top of it once it's landed. ### Change Type - [x] `internal` — Does not affect user-facing stuff - [x] `chore` — Updating dependencies, other boring stuff --------- Co-authored-by: David Sheldrick <d.j.sheldrick@gmail.com>
79 lines
No EOL
1.8 KiB
TOML
79 lines
No EOL
1.8 KiB
TOML
main = "src/worker.ts"
|
|
compatibility_date = "2024-06-25"
|
|
upload_source_maps = true
|
|
|
|
[dev]
|
|
port = 8989
|
|
ip = "0.0.0.0"
|
|
|
|
# these migrations are append-only. you can't change them. if you do need to change something, do so
|
|
# by creating new migrations
|
|
[[migrations]]
|
|
tag = "v1" # Should be unique for each entry
|
|
new_classes = ["BemoDO"]
|
|
|
|
|
|
#################### Environment names ####################
|
|
# dev should never actually get deployed anywhere
|
|
[env.dev]
|
|
name = "dev-bemo"
|
|
|
|
# we don't have a hard-coded name for preview. we instead have to generate it at build time and append it to this file.
|
|
|
|
# staging is the same as a preview on main:
|
|
[env.staging]
|
|
name = "canary-bemo"
|
|
routes = [
|
|
{ pattern = "canary-demo.tldraw.xyz", custom_domain = true }
|
|
]
|
|
|
|
# production gets the proper name
|
|
[env.production]
|
|
name = "production-bemo"
|
|
routes = [
|
|
{ pattern = "demo.tldraw.xyz", custom_domain = true }
|
|
]
|
|
|
|
#################### Durable objects ####################
|
|
# durable objects have the same configuration in all environments:
|
|
|
|
[durable_objects]
|
|
bindings = [
|
|
{ name = "BEMO_DO", class_name = "BemoDO" },
|
|
]
|
|
|
|
[env.dev.durable_objects]
|
|
bindings = [
|
|
{ name = "BEMO_DO", class_name = "BemoDO" },
|
|
]
|
|
|
|
[env.preview.durable_objects]
|
|
bindings = [
|
|
{ name = "BEMO_DO", class_name = "BemoDO" },
|
|
]
|
|
|
|
[env.staging.durable_objects]
|
|
bindings = [
|
|
{ name = "BEMO_DO", class_name = "BemoDO" },
|
|
]
|
|
|
|
[env.production.durable_objects]
|
|
bindings = [
|
|
{ name = "BEMO_DO", class_name = "BemoDO" },
|
|
]
|
|
|
|
#################### Version metadata ####################
|
|
[version_metadata]
|
|
binding = "CF_VERSION_METADATA"
|
|
|
|
[env.dev.version_metadata]
|
|
binding = "CF_VERSION_METADATA"
|
|
|
|
[env.preview.version_metadata]
|
|
binding = "CF_VERSION_METADATA"
|
|
|
|
[env.staging.version_metadata]
|
|
binding = "CF_VERSION_METADATA"
|
|
|
|
[env.production.version_metadata]
|
|
binding = "CF_VERSION_METADATA" |