Spaces:
Sleeping
Sleeping
| # ============================================== | |
| # NeonDB Configuration | |
| # ============================================== | |
| # Get your connection string from: https://console.neon.tech | |
| # Format: postgresql://user:password@host/database?sslmode=require | |
| NEON_DB="postgresql://user:password@ep-xyz-123.us-east-2.aws.neon.tech/neondb?sslmode=require" | |
| # ============================================== | |
| # HuggingFace Configuration (Optional - for local testing) | |
| # ============================================== | |
| # Only needed if you want to test HF deployment locally | |
| # Get your token from: https://huggingface.co/settings/tokens | |
| HF_TOKEN="hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
| HF_USERNAME="your-username" | |
| SPACE_NAME="job-tracker" | |
| # ============================================== | |
| # Application Configuration (Optional) | |
| # ============================================== | |
| # Uncomment and modify if needed | |
| # Application name | |
| # APP_NAME="Job Tracker" | |
| # Debug mode (development only) | |
| # DEBUG=False | |
| # Session timeout (minutes) | |
| # SESSION_TIMEOUT=30 | |
| # Max file upload size (MB) | |
| # MAX_UPLOAD_SIZE=10 | |
| # ============================================== | |
| # Notes | |
| # ============================================== | |
| # 1. Copy this file to .env and fill in your values | |
| # 2. NEVER commit .env to git (it's in .gitignore) | |
| # 3. For production, set NEON_DB in HuggingFace Space secrets | |
| # 4. For GitHub Actions, set HF_TOKEN, HF_USERNAME, SPACE_NAME in GitHub Secrets |