| 123456789101112131415161718192021222324 |
- # API Key for Bearer authentication
- API_KEY=your-secret-key-here
- # HTTP server host/IP address (0.0.0.0 = all interfaces, 127.0.0.1 = localhost only)
- HOST=0.0.0.0
- # HTTP server port
- PORT=3000
- # Maximum number of concurrent scraping jobs
- MAX_CONCURRENT_JOBS=3
- # Qdrant Configuration
- QDRANT_ENABLED=true
- QDRANT_API_URL=http://localhost:6333
- QDRANT_API_KEY=your-qdrant-api-key
- QDRANT_DELETION_DELAY_HOURS=24
- # OpenRouter Configuration (for embeddings)
- OPENROUTER_API_KEY=your-openrouter-api-key
- # MCP Server Configuration
- MCP_ENABLED=true
- MCP_PORT=3001
|