Augustin 4a8b6d1cf8 Amélioration complète de l'application web Journal de Conception
- Refonte complète du design avec système de panneaux latéraux rétractables
- Ajout de templates de projets par domaine (recherche, informatique, mathématiques, etc.)
- Implémentation système d'export PDF avec Puppeteer
- Amélioration de l'API REST avec nouvelles routes d'export et templates
- Ajout de JavaScript client pour interactions dynamiques
- Configuration environnement étendue pour futures fonctionnalités IA
- Amélioration responsive design et expérience utilisateur

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-25 12:09:49 +02:00

21 lines
423 B
Plaintext

# Server Configuration
PORT=3000
# Mistral AI Configuration
MISTRAL_API_KEY=your_mistral_api_key_here
MISTRAL_MODEL=mistral-large-latest
MISTRAL_BASE_URL=https://api.mistral.ai/v1
# AI Features Configuration
AI_ENABLED=false
AI_MAX_TOKENS=4000
AI_TEMPERATURE=0.7
AI_TOP_P=0.95
# Rate Limiting for AI
AI_RATE_LIMIT_REQUESTS=10
AI_RATE_LIMIT_WINDOW=60000
# PDF Export Configuration
PDF_MAX_SIZE=10485760
PDF_TIMEOUT=30000