-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (37 loc) · 976 Bytes
/
.env.example
File metadata and controls
47 lines (37 loc) · 976 Bytes
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
# MDUS System Environment Configuration
# Copy this file to .env and update with your actual values
# Database Configuration
POSTGRES_DB=mdus_db
POSTGRES_USER=mdus_user
POSTGRES_PASSWORD=your_secure_password
POSTGRES_PORT=5432
# Redis Configuration
REDIS_PASSWORD=your_redis_password
REDIS_PORT=6379
# Service Ports
AI_SERVICE_PORT=8001
API_PORT=8000
FRONTEND_PORT=3000
NGINX_PORT=80
NGINX_SSL_PORT=443
# JWT Configuration
JWT_SECRET=your_jwt_secret_key_here
# CORS Configuration
CORS_ORIGINS=http://localhost:3000,http://localhost:8080,http://127.0.0.1:3000
# React App Configuration
REACT_APP_API_URL=http://localhost:8000
REACT_APP_WEBSOCKET_URL=ws://localhost:8000
# Environment
NODE_ENV=development
# AI Model Configuration
MODEL_CACHE_DIR=/app/models
MAX_FILE_SIZE=50MB
SUPPORTED_FORMATS=pdf,png,jpg,jpeg,tiff,bmp
# Logging Configuration
LOG_LEVEL=INFO
LOG_FORMAT=json
# Performance Configuration
WORKERS=4
MAX_REQUESTS=1000
MAX_REQUESTS_JITTER=100
TIMEOUT=300