-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
51 lines (43 loc) · 1.16 KB
/
.env.example
File metadata and controls
51 lines (43 loc) · 1.16 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# ==========================================
# Environment Configuration (EXAMPLE)
# ==========================================
NODE_ENV=development
APP_NAME=AuraWeb
# Domain
DOMAIN=localhost
FRONTEND_URL=http://localhost:80
ADMIN_URL=http://localhost:8080
API_URL=http://localhost:3080/api
# Service URLs
CATALOG_SERVICE_URL=http://catalog:3001
ORDER_PAYMENT_SERVICE_URL=http://order-payment:3002
FULFILLMENT_SERVICE_URL=http://fulfillment:3003
SHOPPING_SERVICE_URL=http://shopping:3004
PLATFORM_SERVICE_URL=http://platform:3005
USER_COMM_SERVICE_URL=http://user-auth:3000
INVENTORY_SERVICE_URL=http://inventory:3006
GATEWAY_URL=http://gateway:8080
# Secrets
SECRET_KEY=CHANGE_ME
JWT_SECRET=CHANGE_ME
JWT_REFRESH_SECRET=CHANGE_ME
STRIPE_SECRET_KEY=CHANGE_ME
# Infrastructure
DB_HOST=database
DB_PORT=5432
DB_NAME=auraweb_db
DB_USER=auraweb_user
DB_PASSWORD=password
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_URL=redis://redis:6379
RABBITMQ_URL=amqp://guest:guest@rabbitmq:5672
# Cloud / External
AWS_ACCESS_KEY_ID=minio
AWS_SECRET_ACCESS_KEY=minio123
AWS_BUCKET_NAME=mybucket
AWS_REGION=us-east-1
AWS_ENDPOINT=http://minio:9000
# Flags
ENABLE_ANALYTICS=true
ENABLE_MONITORING=true