# Hugging Face Space Configuration # Copy this file to .env and fill in your values # Port (HuggingFace Spaces uses 7860) PORT=7860 # Hugging Face Mode # Options: "off", "public", "auth" # - "off": Disable HF models # - "public": Use public HF models (no auth required) # - "auth": Use authenticated HF models (requires HF_TOKEN) HF_MODE=public # Hugging Face Token (optional, for private models) HF_TOKEN= # Test Mode (for development, bypasses authentication) TEST_MODE=false # Database DATABASE_URL=sqlite:///./crypto_data.db # API Keys (Optional - for enhanced data sources) # Leave empty to use free tiers only # CoinMarketCap (Optional) COINMARKETCAP_API_KEY= # News API (Optional) NEWSAPI_KEY= # Block Explorers (Optional) ETHERSCAN_API_KEY= BSCSCAN_API_KEY= TRONSCAN_API_KEY= # Logging LOG_LEVEL=INFO