mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-26 17:06:23 +02:00
Add twilio handler service
This commit is contained in:
parent
de6b3cbbbb
commit
36d9698492
16 changed files with 1420 additions and 59 deletions
24
apps/twilio_handler/.env.example
Normal file
24
apps/twilio_handler/.env.example
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Environment variables for the Voice API application
|
||||
|
||||
# Twilio configuration
|
||||
TWILIO_ACCOUNT_SID=your_account_sid_here
|
||||
TWILIO_AUTH_TOKEN=your_auth_token_here
|
||||
BASE_URL=https://your-public-url-here.ngrok.io
|
||||
|
||||
# RowBoat API configuration
|
||||
ROWBOAT_API_HOST=http://localhost:3000
|
||||
ROWBOAT_PROJECT_ID=your_project_id_here
|
||||
ROWBOAT_API_KEY=your_api_key_here
|
||||
|
||||
# Speech processing APIs
|
||||
DEEPGRAM_API_KEY=your_deepgram_api_key_here
|
||||
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
|
||||
|
||||
# Server configuration
|
||||
PORT=3009
|
||||
WHATSAPP_PORT=3010
|
||||
|
||||
# Redis configuration for persistent state
|
||||
REDIS_URL=redis://localhost:6379/0
|
||||
REDIS_EXPIRY_SECONDS=86400
|
||||
SERVICE_NAME=rowboat-voice
|
||||
Loading…
Add table
Add a link
Reference in a new issue