-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
61 lines (51 loc) · 1.94 KB
/
.env.example
File metadata and controls
61 lines (51 loc) · 1.94 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
59
60
61
# Knowledge Graph Brain - Central Configuration
# Copy this to .env and customize for your environment
# =============================================================================
# DEMO MODE CONTROL - AFFECTS ALL SERVICES
# =============================================================================
DEMO_MODE=true
# =============================================================================
# DATABASE CONFIGURATION
# =============================================================================
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=password
NEO4J_DATABASE=neo4j
# =============================================================================
# AI/EMBEDDING PROVIDERS
# =============================================================================
# Choose one: 'ollama' or 'openai'
EMBEDDING_PROVIDER=ollama
EMBEDDING_MODEL=mxbai-embed-large
# For OpenAI (if not using Ollama)
# OPENAI_API_KEY=your-openai-api-key-here
# For Ollama (local)
OLLAMA_BASE_URL=http://localhost:11434
LLM_MODEL=qwen3:8b
# =============================================================================
# SERVICE PORTS
# =============================================================================
ORCHESTRATOR_PORT=3000
GITHUB_CONNECTOR_PORT=3001
SLACK_CONNECTOR_PORT=3003
CONFLUENCE_CONNECTOR_PORT=3004
RETAIL_CONNECTOR_PORT=8081
# =============================================================================
# CONNECTOR AUTHENTICATION (Production Only - Leave Empty for Demo Mode)
# =============================================================================
# GitHub
GITHUB_TOKEN=
GITHUB_OWNER=
# Slack
SLACK_BOT_TOKEN=
SLACK_APP_TOKEN=
# Confluence
CONFLUENCE_BASE_URL=
CONFLUENCE_EMAIL=
CONFLUENCE_API_TOKEN=
CONFLUENCE_SPACE_KEYS=
# =============================================================================
# ADVANCED CONFIGURATION
# =============================================================================
LOG_LEVEL=info
NODE_ENV=development