-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy path.env.example
More file actions
44 lines (33 loc) · 1.53 KB
/
.env.example
File metadata and controls
44 lines (33 loc) · 1.53 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
# Continuous Claude Environment Variables
# Copy to .env and customize as needed
# =============================================================================
# DATABASE CONNECTION
# =============================================================================
# PostgreSQL Connection String (canonical name)
# The wizard generates this automatically. For remote databases, set manually:
# CONTINUOUS_CLAUDE_DB_URL=postgresql://user:password@hostname:5432/continuous_claude
# Backwards compatible alternatives (also work):
# DATABASE_URL=postgresql://... (industry standard)
# OPC_POSTGRES_URL=postgresql://... (legacy)
# Docker PostgreSQL defaults (used by docker-compose.yml)
POSTGRES_USER=claude
POSTGRES_PASSWORD=claude_dev
POSTGRES_DB=continuous_claude
POSTGRES_PORT=5432
# =============================================================================
# EMBEDDING CONFIGURATION
# =============================================================================
# Embedding provider: local, ollama, openai, voyage
EMBEDDING_PROVIDER=local
# Ollama settings (if using ollama provider)
# OLLAMA_HOST=http://localhost:11434
# OLLAMA_EMBED_MODEL=nomic-embed-text
# =============================================================================
# OPTIONAL API KEYS
# =============================================================================
# Web search via Perplexity
# PERPLEXITY_API_KEY=your_perplexity_key_here
# Documentation search via Nia
# NIA_API_KEY=your_nia_key_here
# Observability via Braintrust
# BRAINTRUST_API_KEY=your_braintrust_key_here