51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
# Momentry Core Environment Configuration
|
|
# Copy this file to .env and fill in your values
|
|
# DO NOT commit .env to version control
|
|
|
|
# === Database ===
|
|
DATABASE_URL=postgres://accusys@localhost:5432/momentry
|
|
DATABASE_SCHEMA=dev
|
|
|
|
# === MongoDB ===
|
|
MONGODB_URL=mongodb://localhost:27017
|
|
MONGODB_DATABASE=momentry
|
|
MONGODB_CACHE_ENABLED=true
|
|
|
|
# === Redis ===
|
|
REDIS_URL=redis://:accusys@localhost:6379
|
|
REDIS_PASSWORD=accusys
|
|
MOMENTRY_REDIS_PREFIX=momentry_dev:
|
|
|
|
# === Qdrant ===
|
|
QDRANT_COLLECTION=momentry_rule1
|
|
|
|
# === API Keys ===
|
|
MOMENTRY_API_KEY=muser_your_key_here
|
|
MOMENTRY_DEMO_API_KEY=muser_your_demo_key_here
|
|
TMDB_API_KEY=your_tmdb_api_key_here
|
|
|
|
# === LLM ===
|
|
MOMENTRY_LLM_SUMMARY_URL=http://127.0.0.1:8082/v1/chat/completions
|
|
MOMENTRY_LLM_SUMMARY_MODEL=google_gemma-4-26B-A4B-it-Q5_K_M.gguf
|
|
MOMENTRY_LLM_SUMMARY_TIMEOUT=120
|
|
|
|
# === Paths ===
|
|
MOMENTRY_OUTPUT_DIR=/Users/accusys/momentry/output_dev
|
|
MOMENTRY_BACKUP_DIR=/Users/accusys/momentry/backup
|
|
MOMENTRY_SCRIPTS_DIR=/Users/accusys/momentry_core_0.1/scripts
|
|
MOMENTRY_PYTHON_PATH=/opt/homebrew/bin/python3.11
|
|
MOMENTRY_FFMPEG=/opt/homebrew/opt/ffmpeg-full/bin/ffmpeg
|
|
MOMENTRY_MEDIA_BASE_URL=
|
|
|
|
# === Encryption ===
|
|
AUDIT_ENCRYPTION_KEY= # 32 bytes hex (64 hex chars)
|
|
|
|
# === Processor Timeouts (seconds) ===
|
|
MOMENTRY_ASR_TIMEOUT=3600
|
|
MOMENTRY_CUT_TIMEOUT=3600
|
|
MOMENTRY_DEFAULT_TIMEOUT=7200
|
|
|
|
# === Server ===
|
|
MOMENTRY_SERVER_PORT=3003
|
|
MOMENTRY_LOG_LEVEL=info
|