-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (26 loc) · 1 KB
/
Copy path.env.example
File metadata and controls
32 lines (26 loc) · 1 KB
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
# 🔐 Variables d'environnement pour EduAI Enhanced
# ⚠️ NE JAMAIS COMMITER CE FICHIER AVEC DE VRAIES VALEURS
# 🌍 Configuration générale
ENVIRONMENT=production
LOG_LEVEL=INFO
DEBUG=false
# � Sécurité (OBLIGATOIRE - Générer des valeurs sécurisées)
SECRET_KEY=your-super-secret-key-change-this-32-chars-minimum
MONGODB_ROOT_PASSWORD=your-mongodb-strong-password
REDIS_PASSWORD=your-redis-strong-password
# 🤖 Clés API (OBLIGATOIRE)
OPENAI_API_KEY=sk-your-openai-api-key
ANTHROPIC_API_KEY=your-anthropic-api-key
ELEVENLABS_API_KEY=your-elevenlabs-api-key
HF_API_KEY=your-hugging-face-api-key
# 🗄️ Configuration base de données
MONGODB_DATABASE=eduai_enhanced
MONGODB_ROOT_USER=eduai
MONGODB_PORT=27017
REDIS_PORT=6379
# 🌐 Configuration réseau
CORS_ORIGINS=http://localhost:3000,https://yourdomain.com
TRUSTED_HOSTS=localhost,127.0.0.1,yourdomain.com
# 🌐 Domaines autorisés (développement local)
CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
TRUSTED_HOSTS=localhost,127.0.0.1