- 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.
36 lines
649 B
YAML
36 lines
649 B
YAML
base_path: "./data/experiments"
|
|
|
|
auth:
|
|
enabled: true
|
|
apikeys:
|
|
test_user:
|
|
hash: "02d4e2b0d8b4869a34511cc01ff1ebbc3cac581a6b361988106eaedca9886a38"
|
|
admin: true
|
|
roles: ["data_scientist", "admin"]
|
|
permissions:
|
|
read: true
|
|
write: true
|
|
delete: 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: "" # Empty = stderr only (dev mode)
|