-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
37 lines (37 loc) · 1.42 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
{
"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_SST": {
"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
}
}
}