-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
53 lines (42 loc) · 2.16 KB
/
env.example
File metadata and controls
53 lines (42 loc) · 2.16 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
46
47
48
49
50
51
52
53
# Oncydra Frontend Environment Variables
# Copy this file to .env.local and fill in your values
# =============================================================================
# GOOGLE API
# =============================================================================
# Gemini API key for AI features
GOOGLE_API_KEY=
# =============================================================================
# ELEVENLABS VOICE AGENTS
# =============================================================================
# Each agent ID corresponds to a configured ElevenLabs Conversational Agent
# Create agents at: https://elevenlabs.io/app/conversational-ai
# Patient Companion - Daily symptom check-ins
VITE_ELEVENLABS_AGENT_ID=
# Triage Assistant - "Is This Normal?" symptom assessment
VITE_ELEVENLABS_TRIAGE_AGENT_ID=
# Timeline Assistant - Voice-powered appointment entry
VITE_ELEVENLABS_TIMELINE_AGENT_ID=
# Mock Rehearsal - Practice appointment conversations
VITE_ELEVENLABS_REHEARSAL_AGENT_ID=
# Care Advocate - AI-powered phone calls to care team (Twilio integration)
VITE_ELEVENLABS_CARE_ADVOCATE_ID=
# Summary Reader - Text-to-speech for health summaries (optional)
VITE_ELEVENLABS_SUMMARY_AGENT_ID=
# =============================================================================
# GOOGLE CALENDAR
# =============================================================================
# OAuth Client ID for Google Calendar integration
# Create at: https://console.cloud.google.com/apis/credentials
VITE_GOOGLE_CALENDAR_CLIENT_ID=
# =============================================================================
# BACKEND SERVICE URLS (Optional - defaults to production)
# =============================================================================
# Uncomment and set these if running backend services locally
# VITE_SYMPTOM_SERVICE_URL=http://localhost:8080
# VITE_EDUCATION_SERVICE_URL=http://localhost:8081
# VITE_ADVOCACY_SERVICE_URL=http://localhost:8082
# VITE_TIMELINE_SERVICE_URL=http://localhost:8083
# VITE_CONSULTATION_SERVICE_URL=http://localhost:8084
# VITE_REMINDER_SERVICE_URL=http://localhost:8085
# VITE_COMMUNICATION_SERVICE_URL=http://localhost:8086
# VITE_ANALYTICS_URL=http://localhost:8087