-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (38 loc) · 1.88 KB
/
Copy path.env.example
File metadata and controls
44 lines (38 loc) · 1.88 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# ===========================================================================
# Knowledge Harvester — Environment Variables
# ===========================================================================
# Copy to .env and fill in real values.
# Variables marked (required) MUST be set for production.
# ===========================================================================
# ---------------------------------------------------------------------------
# Database (required) — Docker Compose PostgreSQL
# ---------------------------------------------------------------------------
PG_HOST=localhost
PG_PORT=5435
PG_DATABASE=workflow_library
PG_USER=harvester
PG_PASSWORD=change-me # (required)
# ---------------------------------------------------------------------------
# GitHub
# ---------------------------------------------------------------------------
# Get token via: gh auth token
GITHUB_TOKEN=your-token-here
# ---------------------------------------------------------------------------
# Reddit (optional — public JSON API works without auth)
# ---------------------------------------------------------------------------
# REDDIT_CLIENT_ID=
# REDDIT_CLIENT_SECRET=
# ---------------------------------------------------------------------------
# Ollama (local LLM)
# ---------------------------------------------------------------------------
OLLAMA_HOST=http://localhost:11434
OLLAMA_MODEL=qwen2.5:7b
# ---------------------------------------------------------------------------
# pgAdmin (optional — start with: docker compose --profile tools up -d)
# ---------------------------------------------------------------------------
PGADMIN_EMAIL=admin@local.dev
PGADMIN_PASSWORD=change-me
# ---------------------------------------------------------------------------
# Logging
# ---------------------------------------------------------------------------
LOG_LEVEL=info