-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathapp.json
170 lines (170 loc) · 5.78 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "Tiana Bot",
"logo": "https://te.legra.ph/file/5f575d5b4a1d019ae2864.png",
"description": "A Telegram Powerfull Group Managment Bot written in Python using Pyrogram and Telethon",
"keywords": [
"telegram",
"anime",
"group",
"manager",
"tiana",
"tianabot",
"telegram"
],
"repository": "https://github.com/Prince-Botz/TianaBot",
"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 duh",
"required": true,
"value": ""
},
"API_ID": {
"description": "Get API_ID from my.telegram.org, used for telethon based modules.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Get API_HASH from my.telegram.org, used for telethon based modules.",
"required": true,
"value": ""
},
"SQLALCHEMY_DATABASE_URI": {
"description": "Your postgres sql db, empty this field if you dont have one.",
"required": false,
"value": "sqldbtype://username:pw@hostname:port/db_name"
},
"OWNER_ID": {
"description": "Your user ID as an integer.",
"required": true,
"value": "1218405248"
},
"BOT_ID": {
"description": "Your bot ID.. Use any other bot to get it.",
"required": true,
"value": ""
},
"HEROKU_API_KEY": {
"description": "Your Heroku API key, get it from 'https://dashboard.heroku.com/account'",
"value": ""
},
"HEROKU_APP_NAME": {
"description": "Enter the Heroku app name here (Must an exact same name with your input above).",
"required": false
},
"OWNER_USERNAME": {
"description": "Your username without the @",
"value": "PrincexBots"
},
"BOT_USERNAME": {
"description": "Your bot username without the @",
"value": "Tiana_Prince_Bot"
},
"ASS_USERNAME": {
"description": "Your Musicbot Assistant username without the @",
"value": "TianaxAssistant"
},
"BOT_NAME": {
"description": "Your Bot Name",
"value": "Tiana"
},
"UPDATE_CHANNEL": {
"description": "Your Telegram Bot Update Channel username Without @ like: TianaxUpdates.",
"required": true,
"value": "TianaxUpdates"
},
"SUPPORT_CHAT": {
"description": "Your Telegram support group chat username Without @ like: TianaxSupport.",
"required": true,
"value": "TianaxSupport"
},
"START_IMG": {
"description": "Enter Your Bot Image Telegraph Link",
"required": true,
"value": ""
},
"BOT_TUT": {
"description": "Enter Your Bot Setup Video Tutorial Telegraph Link Leave As it is If You Dont Have",
"required": false,
"value": ""
},
"MUSICBOT_TUT": {
"description": "Enter Your Music Bot Setup Video Tutorial Telegraph Link Leave As it Is If You Dont Have",
"required": false,
"value": ""
},
"MONGO_DB_URI": {
"description": "Required for database connections.",
"required": true,
"value": ""
},
"EVENT_LOGS": {
"description": "Event logs channel to note down important bot level events, recommend to make this public. ex: '-123456'",
"required": true,
"value": "-123456798"
},
"JOIN_LOGGER": {
"description": "A channel where bot will print who added it to what group, useful during debugging or spam handling.",
"required": true,
"value": "-123456798"
},
"DEV_USERS": {
"description": "ID of users who are Devs of your bot (can use /py etc.). If you are a noob and would come and bother Masha support then keep the current ID's here at they are and add yours.",
"required": true,
"value": ""
},
"STRICT_GBAN": {
"description": "Enforce gbans across new groups as well as old groups. When a gbanned user talks, he will be banned.",
"value": "True"
},
"DRAGONS": {
"description": "A space separated list of user IDs who you want to assign as sudo users.",
"required": false,
"value": ""
},
"DEMONS": {
"description": "A space separated list of user IDs who you wanna assign as support users(gban perms only).",
"required": false,
"value": ""
},
"TIGERS": {
"description": "A space separated list of user IDs who you wanna assign as tiger users.",
"required": false,
"value": ""
},
"WOLVES": {
"description": "A space separated list of user IDs who you want to assign as whitelisted - can't be banned with your bot.",
"required": false,
"value": ""
},
"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/",
"required": false,
"value": "https://<appname>.herokuapp.com/"
},
"DONATION_LINK": {
"description": "Optional: link where you would like to receive donations. If you are a noob, better leave it linking to paul",
"required": false,
"value": "https://t.me/PrincexDonateBot"
}
}
}