| 123456789101112131415161718192021222324252627282930313233 |
- # Database Configuration
- DATABASE_URL=postgresql://postgres:password@localhost:5432/dualflow
- REDIS_URL=redis://localhost:6379
- # Message Queue
- RABBITMQ_URL=amqp://guest:guest@localhost:5672
- # API Configuration
- API_HOST=0.0.0.0
- API_PORT=8000
- API_DEBUG=True
- # Security
- SECRET_KEY=your-secret-key-here
- ALGORITHM=HS256
- ACCESS_TOKEN_EXPIRE_MINUTES=30
- # External Services
- OPENAI_API_KEY=your-openai-api-key
- HUGGINGFACE_API_KEY=your-huggingface-api-key
- # Monitoring
- PROMETHEUS_ENDPOINT=http://localhost:9090
- GRAFANA_ENDPOINT=http://localhost:3000
- # Logging
- LOG_LEVEL=INFO
- LOG_FORMAT=json
- # Development
- DEBUG=True
- RELOAD=True
|