From cd0f952aeb2f939030d1b356c02e703fa7a259dc Mon Sep 17 00:00:00 2001 From: accusys Date: Wed, 25 Mar 2026 01:28:31 +0800 Subject: [PATCH] chore: configure Qdrant API key and update Redis key documentation - Add QDRANT_API_KEY to .env and .env.development - Update docs to reflect configurable Redis key prefix - Add Qdrant configuration section to monitoring docs --- .env | 7 ++++--- .env.development | 5 +++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.env b/.env index 589609d..71bc619 100644 --- a/.env +++ b/.env @@ -10,9 +10,10 @@ REDIS_URL=redis://accusys:accusys@localhost:6379 MONGODB_URL=mongodb://accusys:Test3200Test3200@localhost:27017/admin MONGODB_DATABASE=momentry -# Qdrant (not installed, comment out for now) -# QDRANT_URL=http://localhost:6333 -# QDRANT_COLLECTION=momentry_chunks +# Qdrant Vector Database +QDRANT_URL=http://localhost:6333 +QDRANT_API_KEY=Test3200Test3200Test3200 +QDRANT_COLLECTION=chunks_v3 # Gitea GITEA_URL=http://localhost:3000 diff --git a/.env.development b/.env.development index 47cea38..5ee1c98 100644 --- a/.env.development +++ b/.env.development @@ -25,6 +25,11 @@ MONGODB_DATABASE=momentry REDIS_URL=redis://:accusys@localhost:6379 REDIS_PASSWORD=accusys +# Qdrant Vector Database (same as production) +QDRANT_URL=http://localhost:6333 +QDRANT_API_KEY=Test3200Test3200Test3200 +QDRANT_COLLECTION=chunks_v3 + # Paths MOMENTRY_OUTPUT_DIR=/Users/accusys/momentry/output_dev MOMENTRY_BACKUP_DIR=/Users/accusys/momentry/backup/momentry_dev