-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·43 lines (37 loc) · 1.44 KB
/
Copy path.env.example
File metadata and controls
executable file
·43 lines (37 loc) · 1.44 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
# ===========================================
# OpsFlow Environment Configuration
# ===========================================
# JWT Configuration
JWT_SECRET=flowopsSecretKeykeepthisverylongandsecretforsecuritypurposeotherwisepeoplewillstealit
JWT_EXPIRATION=86400000
JWT_REFRESH_EXPIRATION=604800000
# ===========================================
# MongoDB Configuration
# ===========================================
MONGO_ROOT_USERNAME=admin
MONGO_ROOT_PASSWORD=password
# ===========================================
# Service URLs (for Docker Compose)
# ===========================================
AUTH_SERVICE_URL=http://auth-service:8082
RELEASE_SERVICE_URL=http://release-service:8081
NOTIFICATION_SERVICE_URL=http://notification-service:8083
CHAT_SERVICE_URL=http://chat-service:8084
FORUM_SERVICE_URL=http://forum-service:8086
# ===========================================
# Kafka Configuration
# ===========================================
SPRING_KAFKA_BOOTSTRAP_SERVERS=kafka:9092
# ===========================================
# Email Configuration (Notification Service)
# ===========================================
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_USERNAME=your-email@gmail.com
EMAIL_PASSWORD=your-app-specific-password
# ===========================================
# Ollama Configuration (AI Chat Service)
# ===========================================
OLLAMA_BASE_URL=http://ollama:11434
OLLAMA_MODEL=llama3.2:1b
CHAT_CONTEXT_MAX_MESSAGES=5