- Add development and production configuration templates - Include Docker build files for containerized deployment - Add Nginx configuration with SSL/TLS setup - Include environment configuration examples - Add SSL certificate setup and management - Configure application schemas and validation - Support for both local and production deployment scenarios Provides flexible deployment options from development to production with proper security, monitoring, and configuration management.
27 lines
391 B
YAML
27 lines
391 B
YAML
base_path: "./data/experiments"
|
|
|
|
auth:
|
|
enabled: true
|
|
|
|
server:
|
|
address: ":9102"
|
|
tls:
|
|
enabled: false
|
|
|
|
security:
|
|
rate_limit:
|
|
enabled: true
|
|
requests_per_minute: 60
|
|
burst_size: 10
|
|
ip_whitelist:
|
|
- "127.0.0.1"
|
|
- "::1"
|
|
- "localhost"
|
|
|
|
redis:
|
|
url: "redis://localhost:6379"
|
|
password: "${REDIS_PASSWORD}"
|
|
|
|
logging:
|
|
level: "info"
|
|
file: "./logs/fetch_ml.log"
|