-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 751 Bytes
/
.env.example
File metadata and controls
36 lines (29 loc) · 751 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
# Environment Variables Example
# Copy this file to .env and update values
# Application
ENVIRONMENT=production
LOG_LEVEL=info
# Database
POSTGRES_USER=mlops
POSTGRES_PASSWORD=change_this_password
POSTGRES_DB=mlops_db
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
# Redis
REDIS_HOST=redis
REDIS_PORT=6379
# Grafana
GF_SECURITY_ADMIN_PASSWORD=change_this_password
GF_USERS_ALLOW_SIGN_UP=false
# API
API_HOST=0.0.0.0
API_PORT=8000
# Security
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:8000
API_KEY=your-secret-api-key-here-change-in-production
RATE_LIMIT_ENABLED=true
RATE_LIMIT_PER_MINUTE=100
# ML Models
MODEL_CACHE_DIR=/tmp/model_cache
VISION_MODEL=google/vit-base-patch16-224
NLP_MODEL=distilbert-base-uncased-finetuned-sst-2-english