-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
33 lines (25 loc) · 1.15 KB
/
.env.example
File metadata and controls
33 lines (25 loc) · 1.15 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
# Database
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/data_agents_db"
# NextAuth
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=your-secret-key-here
# n8n configuration
NEXT_PUBLIC_AGENT_API_URL=http://localhost:5678
NEXT_PUBLIC_AGENT_API_KEY=your_n8n_key_here
# n8n workflow endpoints - all pointing to the same base webhook but can be changed
NEXT_PUBLIC_N8N_DEFAULT_WORKFLOW=/webhook/data-engineering-agent
NEXT_PUBLIC_N8N_OPENAI_WORKFLOW=/webhook/data-engineering-agent
NEXT_PUBLIC_N8N_OLLAMA_WORKFLOW=/webhook/data-engineering-agent
NEXT_PUBLIC_N8N_CLAUDE_WORKFLOW=/webhook/data-engineering-agent
NEXT_PUBLIC_N8N_GEMINI_WORKFLOW=/webhook/data-engineering-agent
# OpenAI configuration
NEXT_PUBLIC_OPENAI_API_KEY=your_openai_key_here
# Ollama configuration (running locally)
NEXT_PUBLIC_OLLAMA_API_URL=http://localhost:11434
# Claude (Anthropic) configuration
NEXT_PUBLIC_ANTHROPIC_API_KEY=your_anthropic_key_here
# Gemini configuration
NEXT_PUBLIC_GEMINI_API_KEY=your_gemini_key_here
# Azure OpenAI configuration
NEXT_PUBLIC_AZURE_OPENAI_API_KEY=your_azure_openai_key_here
NEXT_PUBLIC_AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/