forked from LuckyYam/Chitoge
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
75 lines (75 loc) · 2.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "Chitoge",
"description": "A WhatsApp Bot With Rich Anime Features.",
"keywords": [
"bot",
"whatsapp",
"stickers",
"whatsapp-stickers",
"anime",
"whatsapp-bot",
"whatsapp-sticker-bot",
"whatsapp-botto"
],
"website": "https://github.com/ShinNouzen/Chitoge#readme",
"repository": "https://github.com/ShinNouzen/Chitoge.git",
"logo": "https://wallpapermemory.com/uploads/711/chitoge-kirisaki-wallpaper-full-hd-323316.jpg",
"success_url": "/",
"env": {
"PREFIX": {
"description": "Prefix of your bot"
},
"SESSION": {
"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 \",\")",
"required": false
},
"CRON": {
"description": "Cron string to clear chats in a cycle",
"required": false
},
"MONGO_URI": {
"description": "A secret String for Mongodb Connection.(Required)"
},
"GOOGLE_API_KEY": {
"description": "Google API key for Google searches (Not Required)",
"required": false
},
"CHAT_BOT_URL": {
"description": "BrainShop API Brain url",
"required": false
},
"TENOR_API_KEY": {
"description": "A key used for gif searches",
"required": false
},
"GENIUS_KEY": {
"description": "Your access token of genius.com to fetch the lyrics",
"required": false
},
"MAL_USERNAME": {
"description": "Your username for myanimelist.net to make anime and manga search",
"required": false
},
"MAL_PASSWORD": {
"description": "Your password for myanimelist.net to make anime and manga search",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/PrajjwalDatir/heroku-buildpack-imagemagick.git"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}