# Context7 Docs WebUI Configuration # Copy this file to .env and configure for your environment # === Ports (optional - use if you need custom ports) === HOST_PORT=8787 # docs-api port (default: 8787) MCP_HOST_PORT=8788 # docs-mcp port (default: 8788) WEBUI_PORT=8790 # WebUI port (default: 8790) # === API Keys (optional - uncomment to enable auth) === # Docs API key for protecting endpoints like /search, /ingest, etc. # DOCS_API_KEY=your-secret-docs-api-key # WebUI API key (optional - separate from docs-api for UI authentication) # DOCS_WEBUI_API_KEY=your-webui-api-key # === Application Configuration === # Path to documentation files (relative to service container) DOCS_PATH=/docs # SQLite database path DB_PATH=/data/db.sqlite # Logging level: DEBUG, INFO, WARNING, ERROR LOG_LEVEL=INFO # === Vector Store === # Qdrant host and port (internal Docker network) VECTOR_STORE_HOST=qdrant VECTOR_STORE_PORT=6333