forked from jamjamgobambam/pathreview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 823 Bytes
/
.env.example
File metadata and controls
27 lines (21 loc) · 823 Bytes
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
# =============================================================================
# PathReview — Environment Variables
# =============================================================================
# Copy this file to .env and fill in the values.
# cp .env.example .env
# Database
DATABASE_URL=postgresql+asyncpg://pathreview:pathreview@localhost:5433/pathreview_dev
# Redis
REDIS_URL=redis://localhost:6379/0
# Vector store (ChromaDB)
VECTOR_DB_URL=http://localhost:8001
# LLM provider
# Options: "mock" (default, no API key needed), "openai"
LLM_PROVIDER=mock
OPENAI_API_KEY=sk-your-key-here
# App settings
APP_ENV=development
SECRET_KEY=dev-secret-key-change-in-production
LOG_LEVEL=INFO
# GitHub API (optional — only needed for testing GitHub analysis tools with real repos)
GITHUB_TOKEN=ghp_your-token-here