-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.env.example
More file actions
24 lines (21 loc) · 821 Bytes
/
.env.example
File metadata and controls
24 lines (21 loc) · 821 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
# Environment Configuration
NODE_ENV=development
# MCP Transport Configuration
# Transport mode: 'stdio' (default) or 'http' (Streamable HTTP)
MCP_TRANSPORT=stdio
# Port for HTTP transport (default: 3000)
# MCP_PORT=3000
# API key for HTTP transport authentication (required for HTTP mode)
# MCP_API_KEY=
# FalkorDB Configuration
# When using Docker Compose, set FALKORDB_HOST=falkordb (the service name)
FALKORDB_HOST=localhost
FALKORDB_PORT=6379
FALKORDB_USERNAME=
FALKORDB_PASSWORD=
# Set to 'true' to use read-only queries by default (useful for replica instances)
FALKORDB_DEFAULT_READONLY=false
# Set to 'true' to enforce strict read-only mode - blocks all write operations (queries, graph deletions, key modifications)
FALKORDB_STRICT_READONLY=false
# Logging Configuration (optional)
ENABLE_FILE_LOGGING=false