forked from parcadei/Continuous-Claude-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
50 lines (37 loc) · 1.68 KB
/
.env.example
File metadata and controls
50 lines (37 loc) · 1.68 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
48
49
50
# 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
# Fast code editing/search via Morph
# MORPH_API_KEY=your_morph_key_here
# Web scraping via Firecrawl
# FIRECRAWL_API_KEY=your_firecrawl_key_here