- Rust-based digital asset management system - Video analysis: ASR, OCR, YOLO, Face, Pose - RAG capabilities with Qdrant vector database - Multi-database support: PostgreSQL, Redis, MongoDB - Monitoring system with launchd plists - n8n workflow automation integration
66 lines
1.5 KiB
Bash
66 lines
1.5 KiB
Bash
# Momentry Environment Variables Template
|
|
# Copy this file to .env and update with your values
|
|
|
|
# ===================
|
|
# Database Configuration
|
|
# ===================
|
|
DATABASE_URL=postgres://accusys@localhost:5432/momentry
|
|
|
|
# ===================
|
|
# Redis Configuration
|
|
# ===================
|
|
REDIS_URL=redis://accusys:accusys@localhost:6379
|
|
REDIS_PASSWORD=accusys
|
|
|
|
# ===================
|
|
# MongoDB (Optional)
|
|
# ===================
|
|
# MONGODB_URL=mongodb://localhost:27017
|
|
# MONGODB_DATABASE=momentry
|
|
|
|
# ===================
|
|
# Qdrant (Optional - Vector Database)
|
|
# ===================
|
|
# QDRANT_URL=http://localhost:6333
|
|
# QDRANT_COLLECTION=momentry_chunks
|
|
|
|
# ===================
|
|
# API Server
|
|
# ===================
|
|
API_HOST=127.0.0.1
|
|
API_PORT=3000
|
|
|
|
# ===================
|
|
# Watch Directories
|
|
# ===================
|
|
WATCH_DIRECTORIES=~/Videos,~/momentry_core_project/test_video
|
|
|
|
# ===================
|
|
# Ollama (LLM)
|
|
# ===================
|
|
OLLAMA_HOST=http://localhost:11434
|
|
|
|
# ===================
|
|
# Email Notification (SMTP)
|
|
# ===================
|
|
# SMTP_HOST=smtp.gmail.com
|
|
# SMTP_PORT=587
|
|
# SMTP_USER=your_email@gmail.com
|
|
# SMTP_PASSWORD=your_app_password
|
|
# SMTP_FROM=momentry@example.com
|
|
# SMTP_TO=admin@example.com
|
|
|
|
# ===================
|
|
# Backup Configuration
|
|
# ===================
|
|
BACKUP_PATH=~/momentry_core_0.1/backups
|
|
BACKUP_AUTO_ENABLED=true
|
|
BACKUP_SCHEDULE="0 2 * * *" # Daily at 2am
|
|
BACKUP_RETENTION_DAYS=7
|
|
|
|
# ===================
|
|
# Model Paths (Optional)
|
|
# ===================
|
|
# EMBEDDING_MODEL_PATH=./models/comic-embed-text
|
|
# LLM_MODEL_PATH=./models/mistral-7b
|