Spaces:
Sleeping
Sleeping
| # Google Gemini API Key | |
| # Get your API key from: https://makersuite.google.com/ | |
| GEMINI_API_KEY=your_gemini_api_key_here | |
| # Flask Secret Key (for session security) | |
| # Generate a random secret key: python -c "import secrets; print(secrets.token_hex(16))" | |
| SECRET_KEY=your_secret_key_here | |
| # Database Configuration | |
| DATABASE_URL=sqlite:///users.db | |
| # Upload Configuration | |
| MAX_CONTENT_LENGTH=16777216 # 16MB in bytes | |
| UPLOAD_FOLDER=static/uploads | |