-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrangler.toml
47 lines (35 loc) · 1.07 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
46
47
name = "helix-mixer"
main = "dist/index.mjs"
compatibility_date = "2024-03-21"
account_id = "852dfa4ae1b0d579df29be65b986c101"
workers_dev = true
send_metrics = false
build = { command = "npm install && node build.js" }
kv_namespaces = [
{ binding = "CONFIGS", id = "a0591989eee1440894dc97da78f412a6", preview_id = "a0591989eee1440894dc97da78f412a6" }
]
[vars]
VERSION = "@@VERSION@@-dev"
ENVIRONMENT = "dev"
# ----------------------------------------------------------------------
# ci environment
[env.ci]
name = "helix-mixer-ci"
kv_namespaces = [
{ binding = "CONFIGS", id = "a0591989eee1440894dc97da78f412a6", preview_id = "a0591989eee1440894dc97da78f412a6" }
]
[env.ci.vars]
VERSION = "@@VERSION@@-ci"
ENVIRONMENT = "ci"
# ----------------------------------------------------------------------
# production environment
[env.production]
name = "helix-mixer"
kv_namespaces = [
{ binding = "CONFIGS", id = "a0591989eee1440894dc97da78f412a6", preview_id = "a0591989eee1440894dc97da78f412a6" }
]
[env.production.vars]
VERSION = "@@VERSION@@"
ENVIRONMENT = "prod"
# [secrets]
# ...