-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.toml
More file actions
37 lines (34 loc) · 1.31 KB
/
wrangler.toml
File metadata and controls
37 lines (34 loc) · 1.31 KB
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
name = "assembleo-api-gateway"
main = "src/worker.ts"
compatibility_date = "2024-07-16"
# R2 Bucket binding
[[r2_buckets]]
binding = "BUCKET"
bucket_name = "assembleo-fimaprom"
preview_bucket_name = "assembleo-fimaprom"
# Environment variables for development
[env.development.vars]
NODE_ENV = "development"
PORT = "8787"
LOG_LEVEL = "debug"
CORS_ORIGINS = "*"
ASSOCIATES_SERVICE_URL = "http://15.228.221.240/"
UNITIES_SERVICE_URL = "http://15.228.221.240/"
MEETINGS_SERVICE_URL = "http://15.228.221.240/"
LEGACY_AUTH_SERVICE = "https://auth-ms.josecorte-dev.workers.dev"
LEGACY_MEETING_SERVICE = "https://meeting-ms.josecorte-dev.workers.dev"
LEGACY_ASSOCIATE_SERVICE = "https://associate-ms.josecorte-dev.workers.dev"
LEGACY_UNITY_SERVICE = "https://unity-ms.josecorte-dev.workers.dev"
# Environment variables for production
[env.production.vars]
NODE_ENV = "production"
PORT = "8787"
LOG_LEVEL = "info"
CORS_ORIGINS = "*"
ASSOCIATES_SERVICE_URL = "http://15.228.221.240/"
UNITIES_SERVICE_URL = "http://15.228.221.240/"
MEETINGS_SERVICE_URL = "http://15.228.221.240/"
LEGACY_AUTH_SERVICE = "https://auth-ms.production.workers.dev"
LEGACY_MEETING_SERVICE = "https://meeting-ms.production.workers.dev"
LEGACY_ASSOCIATE_SERVICE = "https://associate-ms.production.workers.dev"
LEGACY_UNITY_SERVICE = "https://unity-ms.production.workers.dev"