-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 803 Bytes
/
.env.example
File metadata and controls
37 lines (28 loc) · 803 Bytes
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
# Environment
ENVIRONMENT=development
# API Keys (add the ones you need)
OPENAI_API_KEY=sk-...
ANTHROPIC_API_KEY=sk-ant-...
GOOGLE_API_KEY=...
MISTRAL_API_KEY=...
COHERE_API_KEY=...
REPLICATE_API_TOKEN=...
HUGGINGFACE_API_KEY=...
# Database (default for docker-compose)
DATABASE_URL=postgresql://synapse:synapse_password@localhost:5432/synapse_db
# Redis (default for docker-compose)
REDIS_URL=redis://localhost:6379
# Security
JWT_SECRET=your-super-secret-jwt-key-change-this
API_KEY=your-api-key-for-clients
# Optional: Local models
OLLAMA_HOST=http://localhost:11434
# Optional: OpenRouter for advanced routing
OPENROUTER_API_KEY=...
# CORS
ALLOWED_ORIGINS=["http://localhost:3000", "http://localhost:8000"]
# Logging
LOG_LEVEL=INFO
# Optional: Monitoring
SENTRY_DSN=
ENABLE_PROMETHEUS=false