forked from CodeGraphContext/CodeGraphContext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 1.09 KB
/
.env.example
File metadata and controls
36 lines (29 loc) · 1.09 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
# Example .env file for CodeGraphContext Docker deployment
# Copy this file to .env and update with your values
# Neo4j Configuration (if using Neo4j instead of FalkorDB Lite)
NEO4J_URI=bolt://neo4j:7687
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=codegraph123
# Optional database name for Neo4j (if using Neo4j 4.0+ with multiple databases)
# NEO4J_DATABASE=neo4j
# For production, use a strong password:
# NEO4J_PASSWORD=your_secure_password_here
# Application Configuration
CGC_HOME=/root/.codegraphcontext
PYTHONUNBUFFERED=1
PYTHONDONTWRITEBYTECODE=1
# Optional: Logging Level
# LOG_LEVEL=INFO
# Optional: Custom workspace path
# WORKSPACE_PATH=/workspace
# Remote FalkorDB Configuration (if using a hosted/remote FalkorDB instance)
# Set DATABASE_TYPE=falkordb-remote to use these, or just set FALKORDB_HOST
# and it will be auto-detected.
# FALKORDB_HOST=your-falkordb-host.example.com
# FALKORDB_PORT=6379
# FALKORDB_PASSWORD=your_password_here
# FALKORDB_USERNAME=default
# FALKORDB_SSL=true
# FALKORDB_GRAPH_NAME=codegraph
# Optional: Database selection
# DATABASE_TYPE=falkordb # or falkordb-remote or neo4j