-
-
Notifications
You must be signed in to change notification settings - Fork 830
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 1.45 KB
/
Copy path.env.example
File metadata and controls
43 lines (35 loc) · 1.45 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Example .env for CodeGraphContext Docker / Compose deployments.
# Copy to .env and replace every CHANGE_ME value before starting services.
#
# Deployment policy (see docker-compose.template.yml):
# - Never commit real passwords to git.
# - Compose files require NEO4J_PASSWORD when the neo4j profile is used.
# - Bind database ports to 127.0.0.1 in templates; expose via reverse proxy in production.
# Required when using the neo4j compose profile or docker-compose.yml
NEO4J_PASSWORD=CHANGE_ME
# Neo4j client settings (CGC app / remote bolt)
NEO4J_URI=bolt://127.0.0.1:7687
NEO4J_USERNAME=neo4j
# NEO4J_DATABASE=neo4j
# Application
CGC_HOME=/root/.codegraphcontext
PYTHONUNBUFFERED=1
PYTHONDONTWRITEBYTECODE=1
# Optional: Logging
# LOG_LEVEL=INFO
# Optional: Atlas Cloud for natural-language graph queries (OpenAI-compatible)
# ATLASCLOUD_API_KEY=CHANGE_ME
# ATLASCLOUD_API_BASE=https://api.atlascloud.ai/v1
# ATLASCLOUD_MODEL=deepseek-ai/deepseek-v4-pro
# Remote FalkorDB (set DEFAULT_DATABASE=falkordb-remote or set FALKORDB_HOST)
# FALKORDB_HOST=127.0.0.1
# FALKORDB_PORT=6379
# FALKORDB_PASSWORD=CHANGE_ME
# FALKORDB_USERNAME=default
# FALKORDB_SSL=true
# FALKORDB_GRAPH_NAME=codegraph
# Backend selection: falkordb | falkordb-remote | neo4j | kuzudb | ladybugdb
# DEFAULT_DATABASE=falkordb
# Cap embedded LadybugDB/Kuzu buffer pool (MiB). Default 4096 (4 GiB).
# Set to 0 to use the library default (~80% of system memory).
# CGC_EMBEDDED_BUFFER_POOL_MB=4096