Spaces:
Sleeping
Sleeping
| # Flask Configuration | |
| FLASK_APP=src.app:app | |
| FLASK_ENV=development | |
| SECRET_KEY=your-secret-key-here-generate-with-secrets-token-hex | |
| # HuggingFace OAuth | |
| HF_CLIENT_ID=your-huggingface-client-id | |
| HF_CLIENT_SECRET=your-huggingface-client-secret | |
| HF_REDIRECT_URI=http://localhost:5000/callback | |
| # Backend API | |
| BACKEND_API_URL=http://localhost:8080/v1 | |
| BACKEND_API_TIMEOUT=5 | |
| # Database | |
| DATABASE_PATH=data/contacts.db | |
| # Session Configuration | |
| SESSION_COOKIE_SECURE=False | |
| SESSION_COOKIE_HTTPONLY=True | |
| SESSION_COOKIE_SAMESITE=Lax | |
| PERMANENT_SESSION_LIFETIME=2592000 | |