-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
45 lines (35 loc) · 1.12 KB
/
.env.example
File metadata and controls
45 lines (35 loc) · 1.12 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
EXA_API_KEY=""
GOOGLE_GENERATIVE_AI_API_KEY=""
# Optional assistant agnt
OPENROUTER_API_KEY=""
# Database Configuration (Storage)
# For local development, use file-based database
DATABASE_URL="file:./deep-research.db"
# For remote LibSQL (Turso), use the connection URL and auth token
# DATABASE_URL="libsql://your-database.turso.io"
# DATABASE_AUTH_TOKEN="your-auth-token"
# Vector Database Configuration (separate from storage if needed)
VECTOR_DATABASE_URL="file:./vector-store.db"
# VECTOR_DATABASE_AUTH_TOKEN=""
# Supabas
SUPABASE_URL=""
SUPABASE_ANON_KEY=""
# Github Tok
GITHUB_API_KEY=""
# Supabase Service Role Key (for server-side operations)
SUPABASE_SERVICE_ROLE_KEY=""
# Frontend Configuration (Vite)
# Mastra API URL for frontend integration
VITE_MASTRA_API_URL="http://localhost:4111"
# Langfuse Configuration (optional, for monitoring and logging)
# Get your keys from https://langfuse.com
LANGFUSE_PUBLIC_KEY=""
LANGFUSE_SECRET_KEY=""
LANGFUSE_BASE_URL="https://us.cloud.langfuse.com"
SERVICE_NAME=""
# OpenAI API Key
#OPENAI_API_KEY=""
# Node Environment
NODE_ENV="development"
# Anthropic API Key
#ANTHROPIC_API_KEY=""