- Add QDRANT_API_KEY to .env and .env.development - Update docs to reflect configurable Redis key prefix - Add Qdrant configuration section to monitoring docs
41 lines
1.0 KiB
Bash
41 lines
1.0 KiB
Bash
# Database Configuration
|
|
DATABASE_URL=postgres://accusys@localhost:5432/momentry
|
|
|
|
# Redis
|
|
# Format: redis://[username][:password]@host:port
|
|
# Users: default (with password), accusys (custom user with password)
|
|
REDIS_URL=redis://accusys:accusys@localhost:6379
|
|
|
|
# MongoDB
|
|
MONGODB_URL=mongodb://accusys:Test3200Test3200@localhost:27017/admin
|
|
MONGODB_DATABASE=momentry
|
|
|
|
# Qdrant Vector Database
|
|
QDRANT_URL=http://localhost:6333
|
|
QDRANT_API_KEY=Test3200Test3200Test3200
|
|
QDRANT_COLLECTION=chunks_v3
|
|
|
|
# Gitea
|
|
GITEA_URL=http://localhost:3000
|
|
|
|
# API Server (Production)
|
|
MOMENTRY_SERVER_PORT=3002
|
|
MOMENTRY_REDIS_PREFIX=momentry:
|
|
API_HOST=127.0.0.1
|
|
API_PORT=3002
|
|
|
|
# Worker Configuration (Production)
|
|
MOMENTRY_WORKER_ENABLED=true
|
|
MOMENTRY_MAX_CONCURRENT=2
|
|
MOMENTRY_POLL_INTERVAL=5
|
|
|
|
# Watch Directories (comma separated)
|
|
WATCH_DIRECTORIES=~/Videos,~/momentry_core_project/test_video
|
|
|
|
# Ollama (for Mistral 7B LLM)
|
|
OLLAMA_HOST=http://localhost:11434
|
|
|
|
# Model Paths
|
|
# EMBEDDING_MODEL_PATH=./models/comic-embed-text
|
|
# LLM_MODEL_PATH=./models/mistral-7b
|