Skip to content

Commit f2b4e64

Browse files
committed
Add environment configuration template (.env.example)
1 parent 8532a82 commit f2b4e64

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

.env.example

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# OpenMemory Plus - Environment Configuration
2+
# Copy this file to .env.local and fill in your values
3+
4+
# ============================================
5+
# OpenMemory MCP Configuration
6+
# ============================================
7+
8+
# OpenMemory API (if using hosted version)
9+
OPENMEMORY_API_KEY=
10+
OPENMEMORY_USER_ID=
11+
12+
# ============================================
13+
# Qdrant Vector Database
14+
# ============================================
15+
16+
# Local Qdrant (default: Docker)
17+
QDRANT_URL=http://localhost:6333
18+
QDRANT_API_KEY=
19+
20+
# Qdrant Cloud (optional)
21+
# QDRANT_URL=https://xxx.qdrant.io
22+
# QDRANT_API_KEY=your-qdrant-cloud-api-key
23+
24+
# ============================================
25+
# Embedding Model (BGE-M3)
26+
# ============================================
27+
28+
# Ollama (default, local)
29+
OLLAMA_URL=http://localhost:11434
30+
EMBEDDING_MODEL=bge-m3
31+
32+
# Alternative: OpenAI Embeddings
33+
# OPENAI_API_KEY=sk-xxx
34+
# EMBEDDING_MODEL=text-embedding-3-small
35+
36+
# ============================================
37+
# LLM for Classification (Optional)
38+
# ============================================
39+
40+
# DeepSeek (recommended for Chinese)
41+
DEEPSEEK_API_KEY=
42+
DEEPSEEK_BASE_URL=https://api.deepseek.com
43+
44+
# OpenAI (alternative)
45+
OPENAI_API_KEY=
46+
OPENAI_BASE_URL=https://api.openai.com/v1
47+
48+
# Anthropic Claude (alternative)
49+
ANTHROPIC_API_KEY=
50+
51+
# Local LLM via Ollama
52+
# LLM_PROVIDER=ollama
53+
# LLM_MODEL=qwen2.5:7b
54+
55+
# ============================================
56+
# GitHub Integration (for CI/CD)
57+
# ============================================
58+
59+
GITHUB_TOKEN=
60+
NPM_TOKEN=
61+
62+
# ============================================
63+
# Development Settings
64+
# ============================================
65+
66+
# Debug mode
67+
DEBUG=false
68+
LOG_LEVEL=info
69+
70+
# Node environment
71+
NODE_ENV=development
72+

0 commit comments

Comments
 (0)