-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrangler.toml
45 lines (36 loc) · 1.35 KB
/
wrangler.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name = "threadcount"
main = "src/worker.ts"
compatibility_date = "2023-06-11"
usage_model = "unbound"
logpush = true
# # KV Namespace binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/kv
[[kv_namespaces]]
binding = "KV"
id = "dd94511fcdd44339809479935a8be74a"
preview_id = "f84425a93052431e957b39a202b0e9ab"
# # Durable Object binding - For more information: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
# [[durable_objects]]
# binding = "MY_DURABLE_OBJECT"
# class_name = "MyDurableObject"
# # R2 Bucket binding - For more information: https://developers.cloudflare.com/r2/api/workers/workers-api-reference/#create-a-binding
# [[r2_buckets]]
# binding = "MY_BUCKET"
# bucket_name = "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"
[triggers]
crons = ["0 * * * *", "30 * * * *"]