-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathapp.json
46 lines (45 loc) · 1.58 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
{
"name": "akm-whatsapp-bot",
"description": "Whatsapp bot that can convert images and videos into sticker, send crypto price updates, stock market updates, search internet for any stickers and send random stickers, download youtube videos and do many more things.",
"repository": "https://github.com/akm-akm/akm-whatsapp-bot",
"logo": "https://raw.githubusercontent.com/akm-akm/akm-whatsapp-bot/master/docs/images/akmlogo.png",
"keywords": [
"whatsapp",
"baileys",
"stickers",
"whatsapp-stickers",
"bot",
"whatsapp bot"
],
"success_url": "/",
"addons": [
{
"plan": "heroku-postgresql"
}
],
"env": {
"OWNER_NUMBER": {
"description": "Your whatsapp number with which you will send command to the bot. It must start with the country code without + sign.",
"value": ""
},
"WEBSITE_PASSWORD": {
"description": "The password you want to use for the bot website that will be used to login.",
"value": "1234"
},
"COINMARKETCAP_API_KEY": {
"description": "The API key of CoinMarketCap for crypto feature.",
"value": "",
"required": false
},
"DEEPAI": {
"description": "The api key for nsfw detection in images from https://deepai.org/machine-learning-model/nsfw-detector",
"value": "",
"required": false
},
"SEARCH_STICKER": {
"description": "The api from https://rapidapi.com/microsoft-azure-org-microsoft-cognitive-services/api/bing-image-search1 if you want to use the search sticker (ss) feature.",
"value": "",
"required": false
}
}
}