-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 1.94 KB
/
Copy path.env.example
File metadata and controls
38 lines (30 loc) · 1.94 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
# Copy to .env and fill in
# (Or just copy ../llm-council/.env — it shares the OpenRouter + Anthropic keys)
# OpenRouter API key (shared with llm-council)
OPENROUTER_API_KEY=sk-or-v1-YOUR_KEY_HERE
# Anthropic API key (shared with llm-council)
ANTHROPIC_API_KEY=sk-ant-api03-YOUR_KEY_HERE
# LLM Council backend URL (running locally)
LLM_COUNCIL_URL=http://127.0.0.1:8001
# Mode: "production" runs the full council (~$0.05-0.30/brief)
# "cheap" runs a single small model (~$0.001/brief, for dev iteration)
MODE=cheap
# Single-model used in cheap mode
CHEAP_MODEL=openai/gpt-4o-mini
# ── Multi-user auth (optional) ────────────────────────────────────────────────
# Set AUTH_ENABLED=true to require login. Default=false (single-user, no login).
AUTH_ENABLED=false
# Required when AUTH_ENABLED=true. Generate with: python -c "import secrets; print(secrets.token_hex(32))"
JWT_SECRET=change-me-to-a-random-32-byte-hex-string
# ── Postgres (optional) ───────────────────────────────────────────────────────
# Leave unset to use SQLite (default). Set to enable Postgres.
# DATABASE_URL=postgresql://user:password@localhost:5432/advisorbrain
# After setting, run: python scripts/migrate_sqlite_to_postgres.py
# ── Outlook OAuth (optional) ──────────────────────────────────────────────────
# Setup: portal.azure.com → App registrations → New registration
# Redirect URI: http://localhost:5174/outlook/callback
# API permissions: Mail.Send, User.Read, offline_access (delegated)
OUTLOOK_CLIENT_ID=your-azure-app-client-id
OUTLOOK_CLIENT_SECRET=your-azure-app-client-secret
OUTLOOK_TENANT_ID=common
OUTLOOK_REDIRECT_URI=http://localhost:5174/outlook/callback