-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (33 loc) · 1.17 KB
/
.env.example
File metadata and controls
41 lines (33 loc) · 1.17 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
# Database
POSTGRES_USER=englishconnect
POSTGRES_PASSWORD=devpassword
POSTGRES_DB=englishconnect
DATABASE_URL=postgresql+asyncpg://englishconnect:devpassword@localhost:5432/englishconnect
# Redis
REDIS_URL=redis://localhost:6379/0
# Claude API
ANTHROPIC_API_KEY=your-api-key-here
# Azure OpenAI
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_API_KEY=your-azure-openai-key
AZURE_OPENAI_DEPLOYMENT=gpt-4o-mini
AZURE_OPENAI_API_VERSION=2024-10-21
# OAuth (Google)
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
# OAuth (Microsoft) - optional
MICROSOFT_CLIENT_ID=your-microsoft-client-id
MICROSOFT_CLIENT_SECRET=your-microsoft-client-secret
# Application
SECRET_KEY=your-secret-key-for-jwt-sessions
APP_ENV=development
DEBUG=true
# Voice Services (local endpoints for POC)
STT_SERVICE_URL=http://localhost:8001
TTS_MCP_URL=http://localhost:8002
CONTENT_MCP_URL=http://localhost:8003
# Local LLM for Memori (vLLM with OpenAI-compatible API)
# Set USE_LOCAL_MEMORI_LLM=true to use local vLLM instead of Azure/OpenAI
USE_LOCAL_MEMORI_LLM=false
MEMORI_LLM_URL=http://localhost:8004/v1
MEMORI_LLM_MODEL=Qwen/Qwen2.5-7B-Instruct