-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1.51 KB
/
.env.example
File metadata and controls
27 lines (22 loc) · 1.51 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
# ── Database ──────────────────────────────────────────────────────────
# SQLite (default — no extra services needed)
DATABASE_TYPE=sqlite
DATABASE_URL=sqlite://finbot.db
# PostgreSQL — uncomment these and run: docker compose --profile postgres up
# DATABASE_TYPE=postgresql
# POSTGRES_USER=postgres
# POSTGRES_PASSWORD=postgres
# POSTGRES_DB=finbot
# ── Application ──────────────────────────────────────────────────────
DEBUG=true
HOST=0.0.0.0
PORT=8000
SECRET_KEY=super_long_default_key_change_this_in_production
# ── LLM ──────────────────────────────────────────────────────────────
OPENAI_API_KEY=your_openai_api_key_here
# ── Email ────────────────────────────────────────────────────────────
# Use "console" for dev (prints to stdout), "resend" for production
EMAIL_PROVIDER=console
RESEND_API_KEY=resend_api_key_here
# ── Magic Link ───────────────────────────────────────────────────────
MAGIC_LINK_BASE_URL=http://localhost:8000