Spaces:
Sleeping
Sleeping
| # VoiceForge Environment Configuration | |
| # Copy this file to .env and fill in your values | |
| # Database | |
| DATABASE_URL=postgresql://postgres:postgres@localhost:5432/voiceforge | |
| # Redis | |
| REDIS_URL=redis://localhost:6379/0 | |
| # Google Cloud | |
| GOOGLE_APPLICATION_CREDENTIALS=./credentials/google-cloud-key.json | |
| # API Settings | |
| API_HOST=0.0.0.0 | |
| API_PORT=8000 | |
| DEBUG=true | |
| # Security | |
| SECRET_KEY=your-super-secret-key-change-in-production | |
| ACCESS_TOKEN_EXPIRE_MINUTES=30 | |
| # File Storage | |
| UPLOAD_DIR=./uploads | |
| MAX_AUDIO_DURATION_SECONDS=600 | |
| MAX_UPLOAD_SIZE_MB=50 | |
| # Supported Languages (comma-separated) | |
| SUPPORTED_LANGUAGES=en-US,en-GB,es-ES,es-MX,fr-FR,de-DE,ja-JP,ko-KR,cmn-CN,hi-IN | |