Spaces:
Sleeping
Sleeping
File size: 552 Bytes
1fff71f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# 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
|