-
Notifications
You must be signed in to change notification settings - Fork 53
/
app.json
42 lines (42 loc) · 1.35 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
{
"name": "Betty",
"description": "Open source Google Voice with Receptionist abilities",
"logo": "https://github.com/SamyPesse/betty/raw/master/public/images/betty.png?raw=true",
"repository": "https://github.com/SamyPesse/betty",
"website": "https://github.com/SamyPesse/betty",
"keywords": ["receptionist", "phone", "sms", "betty", "twilio"],
"env": {
"HOST": {
"description": "Hostname where Betty will be running (including protocol)"
},
"SECRET": {
"description": "Secret token for web authentication"
},
"SESSION_SECRET": {
"description": "Secret token for sessions",
"generator": "secret",
"required": false
},
"TEAM": {
"description": "List of members separated by commas in format: name:phone"
},
"TWILIO_SID": {
"description": "Twilio SID"
},
"TWILIO_TOKEN": {
"description": "Twilio Token"
},
"TWILIO_APPID": {
"description": "TwiML Application ID"
},
"PROFILE": {
"description": "Receptionist Profile"
},
"PHONES": {
"description": "Phone number to use (separated by commas)"
},
"ORG_NAME": {
"description": "Organization's Name"
}
}
}