opusdev/vector-similarity-api
1
1# ── Required ──────────────────────────────────────────────────────────────────2QDRANT_URL=https://your-cluster.qdrant.io3QDRANT_API_KEY=your_qdrant_api_key4GROQ_API_KEY=your_groq_api_key5MONGODB_URI=mongodb+srv://user:pass@cluster.mongodb.net/social_media_db6 7# ── Server ─────────────────────────────────────────────────────────────────────8PORT=78609NODE_ENV=development10 11# ── BullMQ / Redis (optional — queues fall back gracefully if Redis is absent) ─12# When running locally:13# docker run -d -p 6379:6379 redis:7-alpine14# Then set:15REDIS_HOST=127.0.0.116REDIS_PORT=637917# REDIS_PASSWORD= # Uncomment if your Redis instance requires auth18REDIS_MAX_RETRIES=3 # How many times to retry connecting before giving up19 20# ── Embedding cache ─────────────────────────────────────────────────────────────21XENOVA_CACHE_DIR=/app/.cache/xenova22 23# ── Posts cache TTL (ms) ────────────────────────────────────────────────────────24ALL_POSTS_CACHE_TTL_MS=3000025 