.env.example 556 B

123456789101112131415161718192021222324
  1. # API Key for Bearer authentication
  2. API_KEY=your-secret-key-here
  3. # HTTP server host/IP address (0.0.0.0 = all interfaces, 127.0.0.1 = localhost only)
  4. HOST=0.0.0.0
  5. # HTTP server port
  6. PORT=3000
  7. # Maximum number of concurrent scraping jobs
  8. MAX_CONCURRENT_JOBS=3
  9. # Qdrant Configuration
  10. QDRANT_ENABLED=true
  11. QDRANT_API_URL=http://localhost:6333
  12. QDRANT_API_KEY=your-qdrant-api-key
  13. QDRANT_DELETION_DELAY_HOURS=24
  14. # OpenRouter Configuration (for embeddings)
  15. OPENROUTER_API_KEY=your-openrouter-api-key
  16. # MCP Server Configuration
  17. MCP_ENABLED=true
  18. MCP_PORT=3001