-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (20 loc) · 934 Bytes
/
.env.example
File metadata and controls
28 lines (20 loc) · 934 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
28
################################################################
NODE_ENV=production
DATABASE_URL=postgresql://postgres:postgres@db:5432/app
DATABASE_URL=postgresql://postgres:postgres@db:5432/app
INGESTION_API_URL=http://api:8000
ANALYSIS_DB_DIR=/ingested_repos
################################################################
# You must set the following environment variable for chat to work
OPENAI_API_KEY=<your_openai_api_key>
# Optional: GitHub token to access private repositories
GITHUB_TOKEN=<your_github_token>
# The following are customizable for summaries and embeddings (OpenAI-compatible APIs)
SUMMARIES_BASE_URL=https://openrouter.ai/api/v1
SUMMARIES_MODEL=google/gemini-2.5-flash
SUMMARIES_API_KEY=<your_summaries_api_key>
# Default Gemini rate limits
MAX_REQUESTS_PER_SECOND=15
EMBEDDINGS_BASE_URL=https://api.openai.com/v1
EMBEDDINGS_MODEL=text-embedding-3-large
EMBEDDINGS_API_KEY=<your_embeddings_api_key>