-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathapp.json
More file actions
78 lines (78 loc) · 2.53 KB
/
app.json
File metadata and controls
78 lines (78 loc) · 2.53 KB
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
76
77
78
{
"name": "Hacking-AiBot",
"description": "Telegram bot made using Telethon which let you access telegram account using it's telethon string session. <Publicised now>",
"logo": "https://telegra.ph/file/ec3c057fcba5594151601.jpg",
"keywords": [
"telegram",
"Spam-Bot",
"Spambot",
"Telethon",
"Gladiators"
],
"repository": "https://github.com/Gladiators-Projects/Hacking-AiBot",
"addons": [
{
"options": {
"version": "12"
},
"plan": "heroku-postgresql"
}
],
"env": {
"API_ID": {
"description": "Get API_ID from my.telegram.org, used for telethon based prototype.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Get API_HASH from my.telegram.org, used for telethon based prototype.",
"required": true,
"value": ""
},
"BOT_ID": {
"description": "Bot's ID as an integer.",
"required": true,
"value": ""
},
"OWNER_ID": {
"description": "Your user ID as an integer.",
"required": true,
"value": ""
},
"BOT_USERNAME": {
"description": "Username of the bot without @",
"required": true,
"value": "Hackingai_bot"
},
"HANDLER": {
"description": "Custom command handler for sudo and dev users.",
"required": true,
"value": "!"
},
"HEROKU_API_KEY": {
"description": "Your Heroku API key, get it from 'https://dashboard.heroku.com/account'",
"required": true,
"value": ""
},
"HEROKU_APP_NAME": {
"description": "Enter the Heroku app name here (Must an exact same name with your input above).",
"required": true,
"value": ""
},
"Bot_Token": {
"description": "Enter your bot token..",
"value": "",
"required": true
},
"SUDO_USERS": {
"description": "ID of sudo users your bot. If you are dumb and would come and bother Gladiators support then keep the current ID's here as they are and add yours separated using space ' '.",
"required": true,
"value": "1860999973"
},
"DEV_USERS": {
"description": "ID of dev users your bot. If you are dumb and would come and bother Gladiators support then keep the current ID's here as they are and add yours separated using space ' '.",
"required": true,
"value": "1860999973"
}
}
}