# Production Environment Variables # Copy this to .env and configure for your environment # Database DB_PASSWORD=scraper123 DATABASE_URL=postgresql://scraper:scraper123@localhost:5432/scraper # API Configuration API_BASE_URL=http://localhost:8000 PORT=8000 # Job Concurrency (limits simultaneous Chrome instances) # Recommendation: 5 jobs per 8GB RAM (each Chrome = ~500MB) # 8GB server: MAX_CONCURRENT_JOBS=5 # 16GB server: MAX_CONCURRENT_JOBS=10 # 32GB server: MAX_CONCURRENT_JOBS=20 MAX_CONCURRENT_JOBS=5 # Canary Test Configuration CANARY_TEST_URL=https://www.google.com/maps/place/Soho+Factory/@54.6738155,25.2595844,17z/ # Alerting (Optional) SLACK_WEBHOOK_URL= ALERT_EMAIL= # For production deployment, use stronger passwords and HTTPS URLs