-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (37 loc) · 1.8 KB
/
.env.example
File metadata and controls
51 lines (37 loc) · 1.8 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
# Agentic Memory - Environment Configuration
# Copy this file to .env and fill in your values
# ============================================================================
# NEO4J DATABASE
# ============================================================================
# Neo4j connection URI
# - Local Neo4j: bolt://localhost:7687
# - Neo4j Aura: neo4j+s://your-instance.databases.neo4j.io
NEO4J_URI=bolt://localhost:7687
# Neo4j authentication
NEO4J_USER=neo4j
NEO4J_PASSWORD=your_neo4j_password
# Note: Neo4j 5.18+ is required for vector index support
# ============================================================================
# OPENAI API
# ============================================================================
# OpenAI API key for embeddings (text-embedding-3-large)
# Get yours at: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-your-openai-api-key-here
# Optional: Override embedding model (default: text-embedding-3-large)
# EMBEDDING_MODEL=text-embedding-3-large
# ============================================================================
# INGESTION SETTINGS
# ============================================================================
# Optional: Repository path to index (can also be passed as CLI argument)
# REPO_PATH=/path/to/your/codebase
# Optional: Supported file extensions (comma-separated)
# SUPPORTED_EXTENSIONS=.py,.js,.ts,.tsx,.jsx
# Optional: Directories to ignore during indexing (comma-separated)
# IGNORE_DIRS=node_modules,__pycache__,.git,dist,build,.venv,venv
# Optional: Logging level (DEBUG, INFO, WARNING, ERROR)
# LOG_LEVEL=INFO
# ============================================================================
# MCP SERVER
# ============================================================================
# Optional: Port for MCP server (default: varies by client)
# MCP_PORT=8000