- 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
20 lines
623 B
Text
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
|