-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwrangler.toml
51 lines (39 loc) · 957 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
46
47
48
49
50
51
# Top-level configuration
name = "vms-local"
main = "src/index.ts"
compatibility_date = "2024-09-23"
compatibility_flags = ["nodejs_compat"]
[assets]
directory = "./public/"
binding = "ASSETS"
[vars]
NODE_ENV = "local"
NODE_VERSION = "22.12.0"
BASE_URL = "http://localhost:8787"
workers_dev = true
keep_vars = true
[[d1_databases]]
binding = "database"
database_name = "vms-local"
database_id = "vms-local"
migrations_table = "migrations"
migrations_dir = "migrations"
[[kv_namespaces]]
binding = "SESSION_TOKENS"
id = "cdaa5de8aaa9471697f014631d8f41a0"
preview_id = "kv-session-token-dev"
[[kv_namespaces]]
binding = "ACTIVATION_TOKENS"
id = "c9a8ccde35684c3fb605416bc43737ff"
preview_id = "kv-activation-token-dev"
[env.dev]
name = "vms-dev"
[env.dev.vars]
NODE_ENV = "development"
NODE_VERSION = "22.12.0"
[env.production]
name = "vms"
[env.production.vars]
NODE_ENV = "production"
NODE_VERSION = "22.12.0"
BASE_URL = "https://torontojs.com"