diff options
| author | Fuwn <[email protected]> | 2026-03-27 05:54:01 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-27 05:54:01 +0000 |
| commit | 94213976262eab9b7a68a9d580587a5fbb9248cc (patch) | |
| tree | 92e72ae66d2ebf9bb5393afd5edffb9709c4d10d /apps/proxy/wrangler.toml | |
| parent | fix(actions): resolve quality and trigger deploy drift (diff) | |
| download | due.moe-94213976262eab9b7a68a9d580587a5fbb9248cc.tar.xz due.moe-94213976262eab9b7a68a9d580587a5fbb9248cc.zip | |
chore(apps): Add proxy
Diffstat (limited to 'apps/proxy/wrangler.toml')
| -rw-r--r-- | apps/proxy/wrangler.toml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/apps/proxy/wrangler.toml b/apps/proxy/wrangler.toml new file mode 100644 index 00000000..f65cc413 --- /dev/null +++ b/apps/proxy/wrangler.toml @@ -0,0 +1,51 @@ +name = "due-proxy" +main = "src/index.js" +compatibility_date = "2023-12-18" + +# Variable bindings. These are arbitrary, plaintext strings (similar to environment variables) +# Note: Use secrets to store sensitive data. +# Docs: https://developers.cloudflare.com/workers/platform/environment-variables +# [vars] +# MY_VARIABLE = "production_value" + +# Bind a KV Namespace. Use KV as persistent storage for small key-value pairs. +# Docs: https://developers.cloudflare.com/workers/runtime-apis/kv +# [[kv_namespaces]] +# binding = "MY_KV_NAMESPACE" +# id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + +# Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files. +# Docs: https://developers.cloudflare.com/r2/api/workers/workers-api-usage/ +# [[r2_buckets]] +# binding = "MY_BUCKET" +# bucket_name = "my-bucket" + +# 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/queues/get-started +# [[queues.producers]] +# binding = "MY_QUEUE" +# queue = "my-queue" + +# Bind a Queue consumer. Queue Consumers can retrieve tasks scheduled by Producers to act on them. +# Docs: https://developers.cloudflare.com/queues/get-started +# [[queues.consumers]] +# queue = "my-queue" + +# Bind another Worker service. Use this binding to call another Worker without network overhead. +# Docs: https://developers.cloudflare.com/workers/platform/services +# [[services]] +# binding = "MY_SERVICE" +# service = "my-service" + +# 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/runtime-apis/durable-objects +# [[durable_objects.bindings]] +# name = "MY_DURABLE_OBJECT" +# class_name = "MyDurableObject" + +# Durable Object migrations. +# Docs: https://developers.cloudflare.com/workers/learning/using-durable-objects#configure-durable-object-classes-with-migrations +# [[migrations]] +# tag = "v1" +# new_classes = ["MyDurableObject"] |