-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrangler.toml
58 lines (46 loc) · 1.19 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
48
49
50
51
52
53
54
55
56
57
58
name = "server-radar"
pages_build_output_dir = ".svelte-kit/cloudflare"
compatibility_date = "2024-11-01"
[placement]
mode = "off"
[[d1_databases]]
database_id = "1138185b-a1aa-4d0b-96f8-7e1388b91a2a"
preview_database_id = "31a2a0e5-80cf-4a2c-a338-e1ad04aaa61f"
binding = "DB"
database_name = "DB"
[env.production]
compatibility_date = "2024-09-23"
compatibility_flags = [ "nodejs_compat" ]
services = [
{ binding = "RATE_LIMIT", service = "rate-limiter" }
]
[env.production.placement]
mode = "smart"
[[env.production.vars]]
NODE_VERSION = "22"
[[env.production.d1_databases]]
database_id = "1138185b-a1aa-4d0b-96f8-7e1388b91a2a"
binding = "DB"
database_name = "DB"
[env.production.queues]
producers=[
{ queue = "email-queue", binding = "EMAIL_QUEUE" }
]
[env.preview]
compatibility_date = "2024-09-23"
compatibility_flags = [ "nodejs_compat" ]
services = [
{ binding = "RATE_LIMIT", service = "rate-limiter" }
]
[env.preview.placement]
mode = "smart"
[[env.preview.vars]]
NODE_VERSION = "22"
[[env.preview.d1_databases]]
database_id = "31a2a0e5-80cf-4a2c-a338-e1ad04aaa61f"
binding = "DB"
database_name = "DB"
[env.preview.queues]
producers=[
{ queue = "email-queue", binding = "EMAIL_QUEUE" }
]