gohorsejobs/job-scraper-multisite/.env.example
Tiago Yamamoto ddc4e2c2bf chore: add complete .env.example files for all services
- frontend/.env.example: Add SEEDER_API_URL
- seeder-api/.env.example: Expand with server config and backend URL
- job-scraper-multisite/.env.example: New file with scraping config
- Update gitignore files to allow .env.example tracking
2025-12-14 09:48:56 -03:00

20 lines
623 B
Text

# =============================================================================
# GoHorse Jobs Scraper - Environment Variables Example
# =============================================================================
# Copy this file to .env and update the values
# Output Configuration
OUTPUT_DIR=./output
OUTPUT_FORMAT=csv
# API Configuration (to send scraped data to backend)
BACKEND_API_URL=http://localhost:8521/api/v1
API_TOKEN=your-api-token-here
# Scraping Configuration
SCRAPE_DELAY_SECONDS=2
MAX_PAGES_PER_SITE=10
USER_AGENT=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
# Logging
LOG_LEVEL=INFO