-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (34 loc) · 1.5 KB
/
Copy path.env.example
File metadata and controls
43 lines (34 loc) · 1.5 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
# --------------------------------------------------------------------------
# Lighthouse — example environment configuration
# Copy to `.env` and fill in. Never commit your real `.env`.
# --------------------------------------------------------------------------
# --- Gmail OAuth (Desktop App) ---------------------------------------------
# Create at https://console.cloud.google.com/apis/credentials
# Application type: Desktop app
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# --- LLM provider ----------------------------------------------------------
# Pick where the structured-extraction calls go.
# "anthropic" — cloud, requires ANTHROPIC_API_KEY below
# "ollama" — local, requires `ollama serve` running
LLM_PROVIDER=anthropic
# Used when LLM_PROVIDER=anthropic.
# Override ANTHROPIC_MODEL if you want a different model.
ANTHROPIC_API_KEY=
ANTHROPIC_MODEL=claude-haiku-4-5-20251001
# Used when LLM_PROVIDER=ollama. Pick any model that supports JSON mode.
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=llama3.1:8b
# --- Lighthouse runtime ----------------------------------------------------
# Where to put the SQLite DB and config. Default: ~/.lighthouse
# LIGHTHOUSE_HOME=
# How many days back to sync on first run. Default 730 (24 months).
SYNC_DAYS_BACK=730
# Concurrency for LLM extractor pipeline.
LLM_CONCURRENCY=5
# API server bind. Bound to localhost only — do not expose externally.
API_HOST=127.0.0.1
API_PORT=5174
WEB_PORT=5173
# Set to "1" to print verbose debug logs.
LIGHTHOUSE_DEBUG=0