-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathapp.json
68 lines (68 loc) · 2.41 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
{
"name":"Ani-Info",
"description":"telegram anime info provider bot",
"keywords":[
"Pyrogram",
"Telegram",
"Bot",
"Anime"
],
"repository":"https://github.com/lostb053/anibot",
"website":"https://github.com/lostb053/anibot",
"success_url":"https://t.me/lostb053",
"env":{
"API_ID":{
"description":"Get this value from https://my.telegram.org"
},
"API_HASH":{
"description":"Get this value from https://my.telegram.org"
},
"DATABASE_URL":{
"description":"Mongodb url from https://cloud.mongodb.com/, guide: https://del.dog/mongodb_guide"
},
"LOG_CHANNEL_ID":{
"description":"[ Private Telegram Log Channel ID ], Note: Also add your Bot to LOG CHANNEL !"
},
"BOT_TOKEN":{
"description":"Get this from https://t.me/botfather and enable Inline Mode"
},
"BOT_NAME":{
"description":"Your bot name with @, like @hanabi_robot, Note: enter exact bot name with exact letters that are in capital"
},
"OWNER_ID":{
"description":"Your user_id e.g 123456789, for multiple ids just add a space between them"
},
"ANILIST_CLIENT": {
"description":"Get from https://anilist.co/settings/developer"
},
"ANILIST_SECRET": {
"description":"Get from https://anilist.co/settings/developer"
},
"ANILIST_REDIRECT_URL": {
"description":"If you don't wish to change auth method, just leave it that way",
"required":false
},
"TRIGGERS":{
"description":"Custom triggers, for multiple, just put a space between like '/ ?'. / and ! are defaults",
"required":false
},
"PREFERRED_LANGUAGE":{
"description":"Sets custom description language, let's say you want all descriptions in Malay. Check and add appropriate language code from http://telegra.ph/Supported-Languages-01-05-2",
"required":false
}
},
"buildpacks":[
{
"url":"https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url":"heroku/python"
}
],
"formation":{
"worker":{
"quantity":1,
"size":"free"
}
}
}