forked from ZeframLou/call-me
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
44 lines (36 loc) · 1.4 KB
/
.env.example
File metadata and controls
44 lines (36 loc) · 1.4 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
# CallMe MCP Server Configuration
# Set these environment variables before using the CallMe plugin
# ===================
# Phone Provider
# ===================
# Telnyx: Get these from https://portal.telnyx.com
# - CALLME_PHONE_ACCOUNT_SID = Your Connection ID (from Call Control app)
# - CALLME_PHONE_AUTH_TOKEN = Your API Key (from API Keys section)
# - CALLME_TELNYX_PUBLIC_KEY = Public key for webhook signature verification (Account Settings > Keys & Credentials)
CALLME_PHONE_ACCOUNT_SID=your_connection_id
CALLME_PHONE_AUTH_TOKEN=your_api_key
# CALLME_TELNYX_PUBLIC_KEY=your_public_key # Optional but recommended for security
# The phone number to call FROM (must be purchased from your provider)
CALLME_PHONE_NUMBER=+1234567890
# ===================
# Your Phone Number
# ===================
# The phone number to call YOU at
CALLME_USER_PHONE_NUMBER=+1234567890
# ===================
# Speech Services
# ===================
# OpenAI API key (required for speech-to-text and text-to-speech)
CALLME_OPENAI_API_KEY=sk-xxx
# ===================
# ngrok
# ===================
# Get a free auth token at https://dashboard.ngrok.com/get-started/your-authtoken
CALLME_NGROK_AUTHTOKEN=your_ngrok_authtoken
# Optional: Use a custom ngrok domain (paid feature)
# CALLME_NGROK_DOMAIN=your-domain.ngrok.io
# ===================
# Optional
# ===================
# Local HTTP port for webhooks (default: 3333)
# CALLME_PORT=3333