File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # Copy this file to .env.dev or .env.prod and fill in values.
2- # Never commit .env.dev or .env.prod — they are gitignored.
1+ # Copy this file to .env.dev and fill in values.
32
43# --- App ------------------------------------------------------------------
54APP_PORT = 8000
65
76# --- Ollama ---------------------------------------------------------------
87# Ollama runs in Docker with port mapped to host. App runs on host.
98# Override to point at an external Ollama instance (e.g. a GPU server).
10- OLLAMA_HOST = http://localhost :11434
9+ OLLAMA_HOST = http://ollama :11434
1110OLLAMA_MODEL = qwen2.5:1.5b
1211OLLAMA_TIMEOUT = 300
1312
1413# --- Whisper --------------------------------------------------------------
1514# Whisper runs in Docker with port mapped to host. App runs on host.
1615# Override to point at an external Whisper endpoint.
17- WHISPER_HOST = http://localhost :9000
16+ WHISPER_HOST = http://whisper :9000
1817WHISPER_MODEL = small.en
1918
2019# --- Gunicorn (prod only) -------------------------------------------------
2120GUNICORN_WORKERS = 2
2221
2322# --- CORS -----------------------------------------------------------------
2423# Comma-separated list of allowed frontend origins.
25- # Dev: http://localhost:5173,http://127.0.0.1:5173
26- # Prod: https://your-domain.com
2724FRONTEND_ORIGINS = http://localhost:5173,http://127.0.0.1:5173
You can’t perform that action at this time.
0 commit comments