-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
37 lines (37 loc) · 1.08 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": "DOREMUS Bot",
"description": "A virtual assistant for answering music related questions",
"repository": "https://github.com/D2KLab/music-chatbot",
"keywords": ["node", "bot", "chatbot", "assistant", "slack", "botkit", "doremus", "facebook", "dialogflow", "apiai", "nlp"],
"website": "https://github.com/D2KLab/music-chatbot",
"success_url":"/",
"addons":[
{
"plan": "mongolab",
"as": "MONGO"
}
],
"env": {
"slackToken": {
"description": "Token provided by Slack"
},
"clientId": {
"description": "Client ID provided by Slack"
},
"clientSecret": {
"description": "Client Secret provided by Slack"
},
"fbAccessToken": {
"description": "Access token provided by Facebook"
},
"fbVerifyToken": {
"description": "Verification token provided by Facebook"
},
"fbAppSecret": {
"description": "Secret app token provided by Facebook"
},
"dialogflow": {
"description": "Token provided by the Dialogflow API"
}
}
}