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
54 lines (42 loc) · 1.77 KB
/
.env.example
File metadata and controls
54 lines (42 loc) · 1.77 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
44
45
46
47
48
49
50
51
52
53
54
# 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
# ── Plugin Configuration ───────────────────────────────────────────────────
# Required when using docker-compose.plugins.yml or docker-compose.dev.yml
# Your ingress domain (used by Traefik labels on plugin services)
# DOMAIN=localhost
# OTEL Plugin — span receiver and processor
# OTEL_RECEIVER_PORT=5317
# OTEL_FILTER_ROUTES=/health,/metrics,/ping,/favicon.ico
# Xdebug Plugin — DBGp TCP listener (dev only)
# XDEBUG_LISTEN_HOST=0.0.0.0
# XDEBUG_LISTEN_PORT=9003
# XDEBUG_DEDUP_CACHE_SIZE=10000
# Log level for plugin containers (DEBUG, INFO, WARNING, ERROR)
# LOG_LEVEL=INFO