forked from SprintiQ-Incorporated/sprintiq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
27 lines (23 loc) · 1.24 KB
/
env.example
File metadata and controls
27 lines (23 loc) · 1.24 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
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-anon-key-here
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key
# AI/ML APIs
# Claude API Key (required for complex AI reasoning tasks - story generation, dependency analysis, sprint goals)
# Either CLAUDE_API_KEY or ANTHROPIC_API_KEY can be used (system checks both)
CLAUDE_API_KEY=your_claude_api_key_here
# Alternative: ANTHROPIC_API_KEY=your_anthropic_api_key_here
# DeepSeek API Key (optional - used for simpler AI tasks like task descriptions, project suggestions)
# If not configured, the system will fall back to Claude for all tasks
DEEPSEEK_API_KEY=your_deepseek_api_key_here
# AI Model overrides (optional - defaults shown)
# CLAUDE_MODEL=claude-sonnet-4-6
# DEEPSEEK_MODEL=deepseek-chat
# Voyage AI API Key (required for embeddings)
VOYAGE_API_KEY=your_voyage_api_key_here
# Vector Database (Supabase pgvector)
# Note: The system uses Supabase's pgvector extension for vector similarity search
# Run the SQL migration script: scripts/create-tawos-vector-table.sql
# or use the fallback scripts if you encounter pgvector compatibility issues
NEXT_PUBLIC_APP_URL=http://localhost:3000