domain_status 0.1.9

Concurrent URL status checker that captures comprehensive metadata in SQLite.
Documentation
# Domain Status Configuration
# Copy this file to .env and customize as needed
#
# Configuration Precedence (highest to lowest):
# 1. Command-line arguments (--db-path, --geoip, etc.)
# 2. Environment variables (this file or exported in shell)
# 3. Default values

# MaxMind License Key (required for GeoIP lookup)
# Get a free key from: https://www.maxmind.com/en/accounts/current/license-key
# If not set, GeoIP lookup is disabled and the application continues normally
MAXMIND_LICENSE_KEY=your_license_key_here

# Database Path Override (optional)
# Note: CLI argument --db-path takes precedence over this variable
# Only used if --db-path is not provided
DOMAIN_STATUS_DB_PATH=./domain_status.db

# GitHub Token (optional, for fingerprint ruleset downloads)
# Increases GitHub API rate limit from 60 to 5000 requests/hour
# Only needed if using GitHub-hosted fingerprint rulesets
# GITHUB_TOKEN=your_github_token_here

# RUST_LOG (optional, for advanced logging control)
# Overrides --log-level CLI argument if set
# Format: domain_status=debug,reqwest=info
# RUST_LOG=domain_status=debug