aboutsummaryrefslogtreecommitdiff
path: root/wrangler.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-06-08 18:28:57 -0700
committerFuwn <[email protected]>2023-06-08 18:28:57 -0700
commitf15f8a3e7d8cfcedcd01157094a18413d9614445 (patch)
treefdded220792a91d25fa1fd8bb42f967ce081693c /wrangler.toml
downloadanilist.me-f15f8a3e7d8cfcedcd01157094a18413d9614445.tar.xz
anilist.me-f15f8a3e7d8cfcedcd01157094a18413d9614445.zip
feat: initial commit
Diffstat (limited to 'wrangler.toml')
-rw-r--r--wrangler.toml43
1 files changed, 43 insertions, 0 deletions
diff --git a/wrangler.toml b/wrangler.toml
new file mode 100644
index 0000000..23d66a9
--- /dev/null
+++ b/wrangler.toml
@@ -0,0 +1,43 @@
+name = "intp-moe"
+main = "src/worker.ts"
+compatibility_date = "2023-06-09"
+
+[placement]
+mode = "smart"
+
+# # KV Namespace binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/kv
+# [[kv_namespaces]]
+# binding = "MY_KV_NAMESPACE"
+# id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
+
+# # Durable Object binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
+# [[durable_objects]]
+# binding = "MY_DURABLE_OBJECT"
+# class_name = "MyDurableObject"
+
+# # Bucket binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/kv#bucket
+# [[buckets]]
+# binding = "MY_BUCKET"
+# name = "my-bucket"
+# bucket_id = "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy"
+
+# # Service binding - For more information: https://developers.cloudflare.com/workers/platform/services
+# [[routes]]
+# binding = "MY_SERVICE"
+# pattern = "/api/*"
+# script = "api.js"
+
+# # Queue binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/queues
+# [[queues]]
+# binding = "MY_QUEUE"
+# name = "my-queue"
+# zone_id = "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"
+
+# [env.production]
+# MY_VARIABLE = "production_value"
+
+# [env.staging]
+# MY_VARIABLE = "staging_value"
+
+# [env.shared]
+# SHARED_VARIABLE = "shared_value"