34 lines
739 B
Plaintext
34 lines
739 B
Plaintext
# ClipForge Environment Configuration
|
|
|
|
# Database
|
|
POSTGRES_USER=clipforge
|
|
POSTGRES_PASSWORD=changeme_clipforge_2025
|
|
POSTGRES_DB=clipforge
|
|
DATABASE_URL=postgresql+asyncpg://clipforge:changeme_clipforge_2025@postgres:5432/clipforge
|
|
|
|
# Redis
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
# Whisper (self-hosted)
|
|
WHISPER_API_URL=https://whisper.jeffemmett.com
|
|
WHISPER_MODEL=deepdml/faster-whisper-large-v3-turbo-ct2
|
|
|
|
# Ollama (local)
|
|
OLLAMA_URL=http://host.docker.internal:11434
|
|
OLLAMA_MODEL=llama3.1:8b
|
|
|
|
# Storage paths (inside container)
|
|
MEDIA_DIR=/data/media
|
|
CLIPS_DIR=/data/clips
|
|
RENDERS_DIR=/data/renders
|
|
|
|
# yt-dlp
|
|
YTDLP_COOKIES_FILE=
|
|
MAX_VIDEO_DURATION=7200
|
|
|
|
# Processing
|
|
MAX_CONCURRENT_JOBS=2
|
|
CLIP_MIN_DURATION=15
|
|
CLIP_MAX_DURATION=90
|
|
TARGET_CLIPS=5
|