-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathwrangler.toml
45 lines (35 loc) · 929 Bytes
/
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 = "webhook-typer"
vars = { ENVIRONMENT = "production", INNGEST_KEY = "H8OEOaHLxlxyVudcGZVxSwudSPx6CbKOLKuf2qSnwtRHcBeJWWEqPY5fX-gdizSiWY1OZCmrH_9z9_nzlLC74A" }
type = "javascript"
account_id = ""
zone_id = ""
routes = [
"typedwebhook.tools/webhook/*",
"typedwebhook.tools/ws/*",
"typedwebhook.tools/new_webhook"
]
compatibility_date = "2022-02-11"
compatibility_flags = []
kv_namespaces = [
{ binding = "SESSIONS", id = "8f972cab743647288e47bf12a11b8e66" }
]
[durable_objects]
bindings = [
{ name = "WEBSOCKETS", class_name = "WebSocketStore" }
]
[[migrations]]
tag = "v1"
new_classes = ["WebSocketStore"]
[build]
command = "npm run build"
[build.upload]
format = "modules"
dir = "dist"
main = "./index.mjs"
[miniflare]
durable_objects_persist = true
[env.staging]
name = "webhook-typer-staging"
workers_dev = true
route = "webhook-typer-staging.inngest.workers.dev/*"
vars = { ENVIRONMENT = "staging" }