-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.worker.dev
More file actions
25 lines (21 loc) · 806 Bytes
/
.env.worker.dev
File metadata and controls
25 lines (21 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# DEVELOPMENT Environment for Therascript Worker
# === General Configuration ===
NODE_ENV=development
APP_MODE=development
# --- Redis Configuration ---
# Host and port for the Redis instance used by BullMQ
REDIS_HOST=localhost
REDIS_PORT=6379
# --- Database & File Storage Configuration ---
# Paths are RELATIVE to the monorepo root directory.
DB_PATH=packages/api/data/therapy-analyzer-dev.sqlite
DB_UPLOADS_DIR=packages/api/data/uploads
# --- Service URLs ---
# These must be accessible from the worker process.
# If the worker runs in a different environment than the services, update these.
WHISPER_API_URL=http://localhost:8000
WHISPER_MODEL=tiny
WHISPER_POLLING_TIMEOUT_MS=1800000
OLLAMA_BASE_URL=http://localhost:11434
ELASTICSEARCH_URL=http://localhost:9200
LLM_BASE_URL=http://localhost:1234