-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathapp.json
More file actions
33 lines (33 loc) · 788 Bytes
/
app.json
File metadata and controls
33 lines (33 loc) · 788 Bytes
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
{
"name": "SmoochBot",
"description": "A botkit fork for implementing Smooch bots",
"repository": "https://github.com/gozman/smoochbot",
"logo": "https://assets.brandfolder.com/b6k4f6zh/view.png",
"keywords": ["ai", "smooch", "bot"],
"env": {
"APPTOKEN" : {
"description": "Smooch app token",
"required": true
},
"KEY": {
"description": "API Key",
"required": true
},
"SECRET": {
"description": "API Secret",
"required": true
},
"BOT_NAME": {
"description": "Bot Name",
"required": true
},
"INCOMING_WEBHOOK": {
"description": "Base URL of the bot + /smooch/",
"required": true
},
"AVATAR_URL": {
"description": "Avatar URL",
"required": false
}
}
}