- Fixed 'app is not defined' errors by using current_app - Improved TTS health check to handle missing /health endpoint - Fixed database trigger creation to be idempotent - Added .env.example with all configuration options - Updated README with security configuration instructions
73 lines
1.5 KiB
Plaintext
73 lines
1.5 KiB
Plaintext
# Talk2Me Environment Configuration
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Flask Configuration
|
|
FLASK_ENV=development
|
|
FLASK_SECRET_KEY=your-secret-key-here-change-in-production
|
|
FLASK_DEBUG=False
|
|
|
|
# Server Configuration
|
|
HOST=0.0.0.0
|
|
PORT=5005
|
|
|
|
# Database Configuration
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/talk2me
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
# Ollama Configuration
|
|
OLLAMA_BASE_URL=http://localhost:11434
|
|
OLLAMA_MODEL=gemma2:9b
|
|
OLLAMA_LARGE_MODEL=gemma3:27b
|
|
|
|
# TTS Configuration
|
|
TTS_SERVER_URL=http://localhost:8000
|
|
TTS_API_KEY=your-tts-api-key-here
|
|
|
|
# Security Configuration
|
|
JWT_SECRET_KEY=your-jwt-secret-key-here
|
|
JWT_ACCESS_TOKEN_EXPIRES=3600
|
|
JWT_REFRESH_TOKEN_EXPIRES=2592000
|
|
|
|
# Admin Configuration
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=change-this-password
|
|
ADMIN_EMAIL=admin@example.com
|
|
|
|
# Rate Limiting
|
|
RATE_LIMIT_PER_MINUTE=60
|
|
RATE_LIMIT_PER_HOUR=1000
|
|
|
|
# Session Configuration
|
|
SESSION_LIFETIME=86400
|
|
SESSION_CLEANUP_INTERVAL=3600
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|
|
LOG_FORMAT=json
|
|
|
|
# CORS Configuration
|
|
CORS_ORIGINS=http://localhost:3000,http://localhost:5005
|
|
|
|
# Feature Flags
|
|
ENABLE_ANALYTICS=true
|
|
ENABLE_RATE_LIMITING=true
|
|
ENABLE_SESSION_MANAGEMENT=true
|
|
ENABLE_ERROR_TRACKING=true
|
|
|
|
# Performance Settings
|
|
MAX_CONTENT_LENGTH=16777216
|
|
REQUEST_TIMEOUT=300
|
|
WHISPER_MODEL=base
|
|
WHISPER_DEVICE=auto
|
|
|
|
# Email Configuration (Optional)
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=your-email@example.com
|
|
SMTP_PASSWORD=your-email-password
|
|
SMTP_FROM=noreply@example.com
|
|
|
|
# External Services (Optional)
|
|
SENTRY_DSN=
|
|
DATADOG_API_KEY=
|
|
NEWRELIC_LICENSE_KEY= |