-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathapp.json
55 lines (55 loc) · 1.94 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
47
48
49
50
51
52
53
54
55
{
"name": "Nezuko",
"description": "A simple and easy-to-use WhatsApp bot project based on Multi-Device Baileys and written in JavaScript",
"keywords": [
"bot",
"whatsapp"
],
"logo": "https://avatars.githubusercontent.com/u/117456661",
"website": "https://github.com/EternityBots/Nezuko",
"repository": "https://github.com/EternityBots/Nezuko.git",
"success_url": "/",
"env": {
"PREFIX": {
"description": "Prefix of your bot"
},
"SESSION_ID": {
"description": "A string for the session to be classified and to get access to the server endpoints"
},
"MODS": {
"description": "The phone numbers of the users who you want to be admin for the bot (should be in international format without + and multiple numbers must be separated by a comma \",\")"
},
"MONGODB": {
"description": "A secret String for Mongodb Connection.(Required)"
},
"GOOGLE_API": {
"description": "Google API key for Google searches (Not Required)",
"required": false
},
"WEATHER_API": {
"description": "Weather API key for weather report (Not Required)",
"required": false
},
"MAL_USERNAME": {
"description": "Your username for myanimelist.net to make anime and manga search",
"value":"PratyushOP",
"required": false
},
"MAL_PASSWORD": {
"description": "Your password for myanimelist.net to make anime and manga search",
"value":"8scv98gxDYHVBry",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}