generated from kimyvgy/worker-apollo-server-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
wrangler.toml
107 lines (81 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# 🚨 DEFAULT CONFIG 🚨
name = "graphql-api"
compatibility_date = "2024-06-03"
main = "src/index.ts"
compatibility_flags = ["nodejs_compat"]
observability = { enabled = true }
[dev]
port = 50123
[[services]]
binding = "RPC_SERVICE_EMAIL"
service = "transactional-email-service"
[vars]
GRAPHQL_BASE_ENDPOINT = "/"
[define]
_APP_ENV = "'development'"
# [placement]
# mode = "smart"
[[queues.producers]]
queue = "mail-queue-dev"
binding = "MAIL_QUEUE"
[[queues.producers]]
queue = "google-photos-import-queue-dev"
binding = "GOOGLE_PHOTOS_IMPORT_QUEUE"
[[hyperdrive]]
binding = "HYPERDRIVE"
id = "f0bc5f4533eb4557976b7d0b59d880ad"
localConnectionString = "postgresql://fake-user:fake-pasword@fake:5432/fake-db"
# =====================================
# =====================================
# 🚨 PRODUCTION CONFIG 🚨
# =====================================
# =====================================
[env.production]
route = "api.jschile.org/*"
logpush = true
observability = { enabled = true }
[[env.production.services]]
binding = "RPC_SERVICE_EMAIL"
service = "transactional-email-service-production"
[env.production.vars]
GRAPHQL_BASE_ENDPOINT = "/"
[env.production.define]
_APP_ENV = "'production'"
# [env.production.placement]
# mode = "smart"
[[env.production.queues.producers]]
queue = "mail-queue-production"
binding = "MAIL_QUEUE"
[[env.production.queues.producers]]
queue = "google-photos-import-queue-production"
binding = "GOOGLE_PHOTOS_IMPORT_QUEUE"
[[env.production.hyperdrive]]
binding = "HYPERDRIVE"
id = "faa163999e9f40c6a26b3612940bc5ba"
# =====================================
# =====================================
# 🚨 STAGING CONFIG 🚨
# =====================================
# =====================================
[env.staging]
route = "api.jsconf.dev/*"
logpush = true
observability = { enabled = true }
[[env.staging.services]]
binding = "RPC_SERVICE_EMAIL"
service = "transactional-email-service-staging"
[env.staging.vars]
GRAPHQL_BASE_ENDPOINT = "/"
[env.staging.define]
_APP_ENV = "'staging'"
# [env.staging.placement]
# mode = "smart"
[[env.staging.queues.producers]]
queue = "mail-queue-staging"
binding = "MAIL_QUEUE"
[[env.staging.queues.producers]]
queue = "google-photos-import-queue-staging"
binding = "GOOGLE_PHOTOS_IMPORT_QUEUE"
[[env.staging.hyperdrive]]
binding = "HYPERDRIVE"
id = "c693e76575c64a8eab15032d97ab938f"