env.example 625 B

123456789101112131415161718192021222324252627282930313233
  1. # Database Configuration
  2. DATABASE_URL=postgresql://postgres:password@localhost:5432/dualflow
  3. REDIS_URL=redis://localhost:6379
  4. # Message Queue
  5. RABBITMQ_URL=amqp://guest:guest@localhost:5672
  6. # API Configuration
  7. API_HOST=0.0.0.0
  8. API_PORT=8000
  9. API_DEBUG=True
  10. # Security
  11. SECRET_KEY=your-secret-key-here
  12. ALGORITHM=HS256
  13. ACCESS_TOKEN_EXPIRE_MINUTES=30
  14. # External Services
  15. OPENAI_API_KEY=your-openai-api-key
  16. HUGGINGFACE_API_KEY=your-huggingface-api-key
  17. # Monitoring
  18. PROMETHEUS_ENDPOINT=http://localhost:9090
  19. GRAFANA_ENDPOINT=http://localhost:3000
  20. # Logging
  21. LOG_LEVEL=INFO
  22. LOG_FORMAT=json
  23. # Development
  24. DEBUG=True
  25. RELOAD=True