-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 1.42 KB
/
.env.example
File metadata and controls
26 lines (20 loc) · 1.42 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
# ── PostgreSQL ──────────────────────────────────────────
POSTGRES_USER=docpilot
POSTGRES_PASSWORD=docpilot_secret
POSTGRES_DB=docpilot
DATABASE_URL=postgresql+asyncpg://docpilot:docpilot_secret@postgres:5432/docpilot
# ── Redis ──────────────────────────────────────────────
REDIS_URL=redis://redis:6379/0
# ── JWT Auth ───────────────────────────────────────────
SECRET_KEY=change-me-to-a-random-string
ACCESS_TOKEN_EXPIRE_MINUTES=30
REFRESH_TOKEN_EXPIRE_DAYS=7
# ── OpenAI ─────────────────────────────────────────────
OPENAI_API_KEY=sk-your-key-here
LLM_MODEL=gpt-4o-mini
# ── CORS ───────────────────────────────────────────────
CORS_ORIGINS=http://localhost:3000,http://localhost:3001
# ── File Storage ───────────────────────────────────────
UPLOAD_DIR=./uploads
# ── Frontend (used at build time by Next.js) ───────────
NEXT_PUBLIC_API_URL=http://localhost:8001