24 lines
629 B
Bash
24 lines
629 B
Bash
# Database URLs for local development (outsite Docker)
|
|
# Change 'db' to 'localhost' if running the services natively
|
|
CMS_DATABASE_URL=postgresql://user:password@localhost:5432/openccb_cms
|
|
LMS_DATABASE_URL=postgresql://user:password@localhost:5432/openccb_lms
|
|
|
|
# General fallback
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/openccb_cms
|
|
|
|
# JWT Secret
|
|
JWT_SECRET=supersecret
|
|
|
|
# Logging
|
|
RUST_LOG=info
|
|
|
|
# AI Configuration
|
|
# Providers: 'openai' or 'local'
|
|
AI_PROVIDER=local
|
|
OPENAI_API_KEY=
|
|
|
|
# Local AI (Ollama & Whisper)
|
|
LOCAL_WHISPER_URL=http://localhost:8000
|
|
LOCAL_OLLAMA_URL=http://localhost:11434
|
|
LOCAL_LLM_MODEL=llama3
|