-
Notifications
You must be signed in to change notification settings - Fork 14
/
app.json
133 lines (133 loc) · 4.24 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "RΛZΞR Bot",
"logo": "https://telegra.ph/file/ac7dabc39052dfc0107b1.jpg",
"description": "A Telegram Powerful Group Managment Bot written in Python using Pyrogram and Telethon",
"keywords": [
"telegram",
"group",
"manager",
"razer",
"razerbot"
],
"repository": "https://github.com/LinuxGuy312/RazerBot",
"addons": [
{
"options": {
"version": "13"
},
"plan": "heroku-postgresql"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
],
"env": {
"TOKEN": {
"description": "Your bot token. Get one from @BotFather",
"value": "",
"required": true
},
"API_ID": {
"description": "Get API_ID from my.telegram.org, used for telethon based modules.",
"value": "",
"required": true
},
"API_HASH": {
"description": "Get API_HASH from my.telegram.org, used for telethon based modules.",
"value": "",
"required": true
},
"SQLALCHEMY_DATABASE_URI": {
"description": "Your postgresql db url. If you don't have it, leave it empty.",
"value": "",
"required": false
},
"OWNER_ID": {
"description": "Your user ID as an integer.",
"value": "",
"required": true
},
"BOT_ID": {
"description": "Your bot's User ID. Use any other bot to get it.",
"value": "",
"required": true
},
"HEROKU_API_KEY": {
"description": "Your Heroku API key, get it from 'https://dashboard.heroku.com/account'",
"value": "",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Enter the Heroku app name here (Must an exact same name with your input above).",
"value": "",
"required": false
},
"OWNER_USERNAME": {
"description": "Your username without the @",
"value": "",
"required": true
},
"BOT_USERNAME": {
"description": "Your bot's username without the @",
"value": "",
"required": true
},
"BOT_NAME": {
"description": "Your Bot Name",
"value": "R Λ Z Ξ R"
},
"UPDATE_CHANNEL": {
"description": "Your Telegram Bot Update Channel username Without @ like: Razer312Updates.",
"value": "Razer312Updates",
"required": false
},
"SUPPORT_CHAT": {
"description": "Your Telegram support group chat username Without @ like: Razer312Support.",
"value": "Razer312Support",
"required": false
},
"START_IMG": {
"description": "Enter Your Bot Image Telegraph Link",
"value": "https://telegra.ph/file/c5a49f2efa04dea8a66b2.jpg",
"required": true
},
"MONGO_DB_URI": {
"description": "Required for database connections.",
"value": "",
"required": true
},
"EVENT_LOGS": {
"description": "Event logs channel to note down important bot level events, recommend to make this public. Starts with: '-100'",
"value": "",
"required": true
},
"JOIN_LOGGER": {
"description": "A channel where bot will print who added it to what group, useful during debugging or spam handling. Starts with: '-100'",
"value": "",
"required": true
},
"DEV_USERS": {
"description": "ID of users who are Devs of your bot (can use /sh /eval etc.).",
"value": "",
"required": false
},
"STRICT_GBAN": {
"description": "Enforce gbans across new groups as well as old groups. When a gbanned user talks, he will be banned.",
"value": "True"
},
"ENV": {
"description": "Setting this to ANYTHING will enable environment variables. Leave it as it is",
"value": "ANYTHING"
},
"URL": {
"description": "The Heroku App URL :- https://<appname>.herokuapp.com/",
"value": "https://<appname>.herokuapp.com/",
"required": false
}
}
}