-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (39 loc) · 2.06 KB
/
.env.example
File metadata and controls
44 lines (39 loc) · 2.06 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
# ============================================
# Samvaad - Environment Variables
# ============================================
# Copy this file to .env.local for local development
# For Vercel deployment, add these variables in the Vercel dashboard
# ============================================
# ============================================
# SUPABASE (Required)
# ============================================
# Get these from: https://app.supabase.com → Settings → API
NEXT_PUBLIC_SUPABASE_URL=https://your-project-id.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.your-anon-key-here
# ============================================
# AZURE OPENAI (Required for AI chat features)
# ============================================
# Get these from: Azure Portal → Your OpenAI Resource → Keys and Endpoint
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com
AZURE_OPENAI_API_KEY=your-azure-openai-api-key-here
AZURE_OPENAI_DEPLOYMENT=gpt-4
AZURE_OPENAI_API_VERSION=2024-02-15-preview
# ============================================
# AZURE SPEECH SERVICES (Optional)
# ============================================
# Get these from: Azure Portal → Your Speech Resource → Keys and Endpoint
NEXT_PUBLIC_AZURE_SPEECH_KEY=your-azure-speech-key-here
NEXT_PUBLIC_AZURE_SPEECH_REGION=eastus
# ============================================
# AZURE TRANSLATOR (Optional)
# ============================================
# Get these from: Azure Portal → Your Translator Resource → Keys and Endpoint
NEXT_PUBLIC_AZURE_TRANSLATOR_KEY=your-azure-translator-key-here
NEXT_PUBLIC_AZURE_TRANSLATOR_ENDPOINT=https://api.cognitive.microsofttranslator.com
NEXT_PUBLIC_AZURE_TRANSLATOR_REGION=eastus
# ============================================
# AZURE COGNITIVE SERVICES (Optional)
# ============================================
# Get these from: Azure Portal → Your Cognitive Services Resource → Keys and Endpoint
NEXT_PUBLIC_AZURE_COGNITIVE_ENDPOINT=https://your-resource.cognitiveservices.azure.com
NEXT_PUBLIC_AZURE_COGNITIVE_KEY=your-cognitive-services-key-here