-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-env
More file actions
58 lines (47 loc) · 1.1 KB
/
example-env
File metadata and controls
58 lines (47 loc) · 1.1 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
52
53
54
55
56
57
58
# Environment
STATUS_DEV=dev
# API Server Configuration
API_SERVER_HOST=0.0.0.0
API_SERVER_PORT=2030
API_SERVER_READ_TIMEOUT=60
# AI Server Configuration
AI_SERVER_HOST=0.0.0.0
AI_SERVER_PORT=9999
# Frontend Configuration
FRONTEND_PORT=5173
# Redis Configuration
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=
REDIS_DB=0
REDIS_SSL=false
REDIS_MAX_RETRIES=3
REDIS_POOL_SIZE=10
REDIS_MIN_IDLE_CONNS=5
# Database Configuration (MySQL)
MYSQL_HOST=mysql
MYSQL_PORT=3306
MYSQL_USER=admin
MYSQL_PASSWORD=pokiwar0981
MYSQL_DATABASE=shop
# Database Configuration (MongoDB)
MONGODB_HOST=mongodb
MONGODB_PORT=27017
MONGODB_USERNAME=root
MONGODB_PASSWORD=password
MONGODB_AUTH_SOURCE=admin
# Prometheus Configuration
PROMETHEUS_PORT=9090
# Kafka Configuration
KAFKA_PORT=9092
KAFKA_UI_PORT=8080
KAFKA_BOOTSTRAP_SERVERS=kafka:9093
KAFKA_GROUP_ID=vrecom_ai_server_group
# JWT Configuration
JWT_SECRET_KEY=your_secret
JWT_EXPIRE_MINS=15
JWT_REFRESH_KEY=refresh_secret
JWT_REFRESH_EXPIRE_HOURS=720
# API URLs for frontend (Docker internal network)
VITE_API_SERVER_URL=http://api_server:2030
VITE_AI_SERVER_URL=http://ai_server:9999