-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.docker.example
More file actions
40 lines (35 loc) · 1.1 KB
/
.env.docker.example
File metadata and controls
40 lines (35 loc) · 1.1 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
# Docker Environment Configuration for Semem
# Copy this file to .env and customize for your Docker deployment
# This extends the standard .env file with Docker-specific settings
# ======================
# Core Configuration (same as local)
# ======================
SEMEM_API_KEY=your-api-key
NODE_ENV=production
# ======================
# SPARQL Store Configuration (for Docker Fuseki)
# ======================
SPARQL_USER=admin
SPARQL_PASSWORD=admin123
# SPARQL endpoint configuration (set by Docker Compose)
# SPARQL_HOST=fuseki
# SPARQL_PORT=4050
# ======================
# LLM Provider API Keys (same as local setup)
# ======================
OLLAMA_API_KEY=NO_KEY_REQUIRED
OPENAI_API_KEY=your-openai-key
CLAUDE_API_KEY=your-claude-key
MISTRAL_API_KEY=your-mistral-key
GROQ_API_KEY=your-groq-key
PERPLEXITY_API_KEY=your_perplexity_key
HUGGINGFACE_API_KEY=your_huggingface_key
GEMINI_API_KEY=your-gemini-key
NOMIC_API_KEY=your-nomic-key
# ======================
# Docker-specific settings
# ======================
# Ollama settings (using Docker service)
OLLAMA_HOST=http://ollama:11434
# Test settings
TEST_TIMEOUT=10000