-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
44 lines (44 loc) · 1.15 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
{
"name": "IDN-Subs-Count-UserBot",
"description": "Subscriber Count on Channel or Member Count on Group",
"repository": "https://github.com/IDN-C-X/IDN-Subs-Count-UserBot",
"logo": "https://telegra.ph/file/fe64e5b1ebecba97ca1dd.png",
"keywords": ["Telegram", "Subscriber", "Count"],
"env": {
"BOT_TOKEN": {
"description": "Get it from @BotFather"
},
"APP_ID": {
"description": "Your API_ID, Get it from https://my.telegram.org/apps"
},
"API_HASH": {
"description": "Your API_HASH, Get it from https://my.telegram.org/apps"
},
"CHANNELS": {
"description": "List of channel/group usernames, seperated by space."
},
"STRING_SESSION": {
"description": "Pyrogram string session. run genstring.py"
},
"MSG_ID": {
"description": "Message ID of COUNTS_EDIT_CHANNEL."
},
"COUNTS_EDIT_CHANNEL": {
"description": "Username of channel/group to edit the subscriber count."
}
},
"addons": [
],
"buildpacks": [
{
"url": "heroku/python"
}
],
"stack": "heroku-20",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}