-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwrangler.toml
61 lines (54 loc) · 1.59 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
59
60
61
name = "d1-event-scheduler-dev"
main = "src/index.ts"
compatibility_date = "2024-11-06"
compatibility_flags = ["nodejs_compat_v2"]
workers_dev = false
# route = { pattern = "event-scheduler.example.com", custom_domain = true }
minify = true
upload_source_maps = true
durable_objects.bindings = [
{ name = "D1_EVENT_SCHEDULER", class_name = "D1EventScheduler" },
{ name = "D1_EVENT", class_name = "D1Event" },
]
migrations = [
{ tag = "v1", new_classes = [
"D1EventScheduler",
] },
{ tag = "v2", new_classes = [
"D1Event",
] },
]
d1_databases = [
# { binding = "DB", database_name = "EXAMPLE", database_id = "example-db-id-goes-here", preview_database_id = "example-db-id-goes-here" },
]
[observability]
enabled = true
[placement]
mode = "smart"
[env.production]
name = "d1-event-scheduler"
compatibility_date = "2024-11-06"
compatibility_flags = ["nodejs_compat_v2"]
route = { pattern = "event-scheduler.d1.demosjarco.dev", custom_domain = true }
durable_objects.bindings = [
{ name = "D1_EVENT_SCHEDULER", class_name = "D1EventScheduler" },
{ name = "D1_EVENT", class_name = "D1Event" },
]
migrations = [
{ tag = "v1", new_classes = [
"D1EventScheduler",
] },
{ tag = "v2", new_classes = [
"D1Event",
] },
]
d1_databases = [
{ binding = "FSDB", database_name = "fortnitestw", database_id = "13310a9d-4dca-4c17-9000-8d674933551c", preview_database_id = "53d69581-a8a7-46de-b140-281071cab2eb" },
]
[env.production.observability]
enabled = true
[env.production.placement]
mode = "smart"
[dev]
local_protocol = "https"
ip = "localhost"