-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy path.env.template
More file actions
29 lines (22 loc) · 888 Bytes
/
.env.template
File metadata and controls
29 lines (22 loc) · 888 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
29
# FalkorDB connection
FALKORDB_HOST=localhost
FALKORDB_PORT=6379
# Optional FalkorDB authentication
FALKORDB_USERNAME=
FALKORDB_PASSWORD=
# Token checked by authenticated endpoints. If left empty, the current
# implementation accepts requests without an Authorization header.
SECRET_TOKEN=<YOUR_SECRET_TOKEN>
# Set to 1 to make read-only endpoints public.
CODE_GRAPH_PUBLIC=0
# Limit /api/analyze_folder to this directory tree. Leave commented to use
# the repository root as the default allowed directory.
# ALLOWED_ANALYSIS_DIR=/absolute/path/to/projects
# LiteLLM model used by /api/chat
MODEL_NAME=gemini/gemini-flash-lite-latest
# Provider credential for the default Gemini model. Change this to the
# appropriate provider key if you change MODEL_NAME.
GEMINI_API_KEY=<YOUR_GEMINI_API_KEY>
# Optional Uvicorn bind settings used by start.sh / make run-*
HOST=0.0.0.0
PORT=5000