#:schema node_modules/wrangler/config-schema.json name = "flux-gallery-cf" main = "src/index.ts" compatibility_date = "2024-07-01" compatibility_flags = ["nodejs_compat"] # tail_consumers = [{ service = "a1d-rb-tail" }] # Automatically place your workloads in an optimal location to minimize latency. # If you are running back-end logic in a Worker, running it closer to your back-end infrastructure # rather than the end user may result in better performance. # Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement # [placement] # mode = "smart" # Variable bindings. These are arbitrary, plaintext strings (similar to environment variables) # Docs: # - https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables # Note: Use secrets to store sensitive data. # - https://developers.cloudflare.com/workers/configuration/secrets/ [vars] BUCKET_NAME = "a1d-flux" EXPIRATION_TTL = 3600 API_NAME= "run_local" # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#workers-ai # [ai] # binding = "AI" # Bind an Analytics Engine dataset. Use Analytics Engine to write analytics within your Pages Function. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#analytics-engine-datasets # [[analytics_engine_datasets]] # binding = "BILLING" # dataset = "A1D_RB_BILLING" # Bind a headless browser instance running on Cloudflare's global network. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#browser-rendering # [browser] # binding = "MY_BROWSER" # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#d1-databases # [[d1_databases]] # binding = "MY_DB" # database_name = "my-database" # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # Bind a dispatch namespace. Use Workers for Platforms to deploy serverless functions programmatically on behalf of your customers. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#dispatch-namespace-bindings-workers-for-platforms # [[dispatch_namespaces]] # binding = "MY_DISPATCHER" # namespace = "my-namespace" # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model. # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#durable-objects [[durable_objects.bindings]] name = "TASK_STATUS_DURABLE_OBJECT" class_name = "TaskStatusDurableObject" # Durable Object migrations. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#migrations [[migrations]] tag = "v1" new_classes = ["TaskStatusDurableObject"] # Bind a Hyperdrive configuration. Use to accelerate access to your existing databases from Cloudflare Workers. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#hyperdrive # [[hyperdrive]] # binding = "MY_HYPERDRIVE" # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#kv-namespaces [[kv_namespaces]] binding = "MY_KV_NAMESPACE" id = "039142b30068443298c8024a2f7b3b4a" # Bind an mTLS certificate. Use to present a client certificate when communicating with another service. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#mtls-certificates # [[mtls_certificates]] # binding = "MY_CERTIFICATE" # certificate_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#queues # [[queues.producers]] # binding = "MY_QUEUE" # queue = "a1d-iu" # Bind a Queue consumer. Queue Consumers can retrieve tasks scheduled by Producers to act on them. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#queues # !!! WARNING !!! 1200 requests / 5 mins # [[queues.consumers]] # queue = "a1d-iu" # type = "http_pull" # # Optional # visibility_timeout_ms = 600000 # max_retries = 2 # dead_letter_queue = "a1d-iu-dead" # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#r2-buckets [[r2_buckets]] binding = "MY_BUCKET" bucket_name = "a1d-flux-gallery" # Bind another Worker service. Use this binding to call another Worker without network overhead. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings # [[services]] # binding = "MY_SERVICE" # service = "my-service" # Bind a Vectorize index. Use to store and query vector embeddings for semantic search, classification and other vector search use-cases. # Docs: https://developers.cloudflare.com/workers/wrangler/configuration/#vectorize-indexes # [[vectorize]] # binding = "MY_INDEX" # index_name = "my-index"