Spaces:
Sleeping
Sleeping
| # ============================================ | |
| # Environment Variables | |
| # Copy this to .env for local development | |
| # On Hugging Face: Set these in Space Settings > Variables | |
| # ============================================ | |
| # --- Render PostgreSQL Database URL --- | |
| # Format: postgresql+asyncpg://username:password@host:port/dbname | |
| # Get this from Render Dashboard > Your Database > External Connection String | |
| # IMPORTANT: Replace "postgresql://" with "postgresql+asyncpg://" | |
| DATABASE_URL=postgresql+asyncpg://your_user:your_password@your_host.render.com:5432/your_dbname | |
| # --- Scraper Settings --- | |
| MAX_CONCURRENT_BROWSERS=3 | |
| MIN_DELAY_SECONDS=3 | |
| MAX_DELAY_SECONDS=8 | |
| PAGE_TIMEOUT_SECONDS=30 | |
| CAPTCHA_CHECK_TIMEOUT=10 | |
| # --- App Settings --- | |
| APP_TITLE=Novel Scraper Pro | |
| DEBUG=false |