cbac3ad3d0
Fixes asset loading/processing on staging/previews by introducing a new image processing worker. This worker acts as a proxy for our various image hosts and resizes/optimizes/caches images on the fly. Like the old bookmark worker, this one is deployed in an ad-hoc fashion as it works across environments and we're not likely to change it often. ### Change type - [x] `other`
81 lines
2.1 KiB
TOML
81 lines
2.1 KiB
TOML
main = "src/worker.ts"
|
|
compatibility_date = "2024-06-20"
|
|
|
|
[dev]
|
|
port = 8788
|
|
|
|
[[analytics_engine_datasets]]
|
|
binding = "MEASURE"
|
|
|
|
#################### Environment names ####################
|
|
# dev should never actually get deployed anywhere
|
|
[env.dev]
|
|
name = 'tldraw-assets-dev'
|
|
|
|
# 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 = "main-tldraw-assets"
|
|
|
|
# production gets the proper name
|
|
[env.production]
|
|
name = "tldraw-assets"
|
|
|
|
#################### Assets R2 bucket ####################
|
|
# in dev, we write to the preview bucket and need a `preview_bucket_name`
|
|
[[env.dev.r2_buckets]]
|
|
binding = 'UPLOADS'
|
|
bucket_name = 'uploads-preview'
|
|
preview_bucket_name = 'uploads-preview'
|
|
|
|
# in preview and staging we write to the preview bucket
|
|
[[env.preview.r2_buckets]]
|
|
binding = 'UPLOADS'
|
|
bucket_name = 'uploads-preview'
|
|
|
|
[[env.staging.r2_buckets]]
|
|
binding = 'UPLOADS'
|
|
bucket_name = 'uploads-preview'
|
|
|
|
# in production, we write to the main bucket
|
|
[[env.production.r2_buckets]]
|
|
binding = "UPLOADS"
|
|
bucket_name = "uploads"
|
|
|
|
#################### Analytics engine ####################
|
|
# analytics engine has the same configuration in all environments:
|
|
[[env.dev.analytics_engine_datasets]]
|
|
binding = "MEASURE"
|
|
|
|
[[env.preview.analytics_engine_datasets]]
|
|
binding = "MEASURE"
|
|
|
|
[[env.staging.analytics_engine_datasets]]
|
|
binding = "MEASURE"
|
|
|
|
[[env.production.analytics_engine_datasets]]
|
|
binding = "MEASURE"
|
|
|
|
#################### Routes ####################
|
|
# in production, we use a custom domain. others get a default *.tldraw.workers.dev domain
|
|
[[env.production.routes]]
|
|
pattern = 'assets.tldraw.xyz'
|
|
custom_domain = true
|
|
zone_name = 'tldraw.xyz'
|
|
|
|
#################### 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"
|