-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
58 lines (50 loc) · 2.31 KB
/
.env.example
File metadata and controls
58 lines (50 loc) · 2.31 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
55
56
57
58
# MONITOR Environment Variables
# Copy this file to .env and fill in your values
# NEVER commit .env to version control!
# =============================================================================
# NEO4J (Graph Database - Canonical Data)
# =============================================================================
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD= # Required - no default for security
# =============================================================================
# MONGODB (Document Database - Narrative Data)
# =============================================================================
MONGODB_URI=mongodb://localhost:27017
MONGODB_DATABASE=monitor
# =============================================================================
# QDRANT (Vector Database - Embeddings)
# =============================================================================
QDRANT_HOST=localhost
QDRANT_PORT=6333
QDRANT_API_KEY= # Optional for local, required for cloud
# =============================================================================
# OPENSEARCH (Text Search)
# =============================================================================
OPENSEARCH_HOST=localhost
OPENSEARCH_PORT=9200
OPENSEARCH_USER=admin
OPENSEARCH_PASSWORD= # Required for production
# =============================================================================
# MINIO (Object Storage)
# =============================================================================
MINIO_ENDPOINT=localhost:9000
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY= # Required - no default for security
MINIO_SECURE=false
# =============================================================================
# LLM API (Language Model)
# =============================================================================
ANTHROPIC_API_KEY= # Required for Claude models
OPENAI_API_KEY= # Required for OpenAI models
LLM_MODEL=claude-sonnet-4-20250514
# =============================================================================
# MCP SERVER
# =============================================================================
MCP_SERVER_HOST=0.0.0.0
MCP_SERVER_PORT=8080
# =============================================================================
# APPLICATION
# =============================================================================
LOG_LEVEL=INFO
DEBUG=false