forked from lucaswillering/twilio-voice-teneo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
56 lines (56 loc) · 1.92 KB
/
app.json
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
54
55
56
{
"name": "twilio-voice-teneo",
"description": "A Teneo bot connector for the Twilio Voice.",
"keywords": ["bot", "Twilio", "Teneo", "Voice"],
"repository": "https://github.com/pomegran/twilio-voice-teneo/",
"env": {
"WEBHOOK_FOR_TWILIO": {
"description": "Webhook for Twilio Voice i.e. the server it will send messages to i.e. external address for server this application runs on",
"required": true
},
"PORT": {
"description": "Port this runs on. Defaults to 1337",
"required": false
},
"TENEO_ENGINE_URL": {
"description": "Please input your Teneo Engine URL. https://some.engine/instance/",
"required": true
},
"LANGUAGE_STT": {
"description": "Please enter your Twilio Language for voice recognition (STT). Defaults to 'en-GB'. List is here: https://www.twilio.com/docs/voice/twiml/gather#languagetags",
"required": false
},
"LANGUAGE_TTS": {
"description": "Please enter your Twilio Language for spoken voice (TTS). Defaults to 'en-GB'. N.B. NOT YET IMPLEMENTED",
"required": false
},
"FIRST_INPUT_FOR_TENEO": {
"description": "First input to send to Teneo when a call starts. Empty if not entered",
"required": false
},
"ACCOUNT_SID": {
"description": "Twilio Account SID - only required if sending SMSs. Found here: https://www.twilio.com/console",
"required": false
},
"AUTH_TOKEN": {
"description": "Twilio Auth Token - only required if sending SMSs. Found here: https://www.twilio.com/console",
"required": false
},
"PUSHER_APPID": {
"description": "Pusher AppId",
"required": true
},
"PUSHER_KEY": {
"description": "Pusher Key",
"required": true
},
"PUSHER_SECRET": {
"description": "Pusher Secret",
"required": true
},
"PUSHER_HOST": {
"description": "Pusher Host",
"required": true
}
}
}