# ============================================================================= # eamco_address_checker Environment Configuration # ============================================================================= # Copy this file to .env and adjust values as needed. # All values have sensible defaults; only override what you need. # ============================================================================= # DATABASE # ============================================================================= # Override the default PostgreSQL connection string # Default: postgresql+psycopg2://postgres:password@192.168.1.204/eamco # DATABASE_URL=postgresql+psycopg2://user:pass@host:5432/database # ============================================================================= # BATCH PROCESSING # ============================================================================= # Maximum records to process per batch run (default: 150) # BATCH_SIZE=150 # Number of records to process before committing to database (default: 20) # COMMIT_BATCH_SIZE=20 # ============================================================================= # RATE LIMITING (Nominatim) # ============================================================================= # Minimum sleep between geocoding requests in seconds (default: 1.2) # MIN_SLEEP=1.2 # Maximum sleep between geocoding requests in seconds (default: 1.8) # MAX_SLEEP=1.8 # Geocoding request timeout in seconds (default: 10) # GEOCODE_TIMEOUT=10 # ============================================================================= # LOGGING # ============================================================================= # Log level: DEBUG, INFO, WARNING, ERROR, CRITICAL (default: INFO) # LOG_LEVEL=INFO