-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (36 loc) · 1.04 KB
/
.env.example
File metadata and controls
47 lines (36 loc) · 1.04 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
# Core databases
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=codemind123
# Qdrant vector store
QDRANT_HOST=localhost
QDRANT_PORT=6333
QDRANT_COLLECTION=codemind_files
# LLM — Ollama is the free/local default (no API key needed)
LLM_PROVIDER=ollama
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=codellama
# Embeddings model (sentence-transformers — downloaded automatically on first run)
EMBED_MODEL=all-MiniLM-L6-v2
# ── Optional integrations ─────────────────────────────────────────────────────
# Fill only the integrations you want to use.
# GitHub
GITHUB_TOKEN=
# GitLab
GITLAB_TOKEN=
# Jira
JIRA_URL=
JIRA_EMAIL=
JIRA_TOKEN=
# Azure DevOps (Git + Boards)
AZURE_DEVOPS_ORG=
AZURE_DEVOPS_TOKEN=
# Slack
SLACK_TOKEN=
# Microsoft Teams (incoming webhook)
TEAMS_WEBHOOK_URL=
# Optional: override to use a cloud LLM instead of Ollama
# LLM_PROVIDER=openai
# OPENAI_API_KEY=
# LLM_PROVIDER=anthropic
# ANTHROPIC_API_KEY=