forked from Deshadeeth-Thisarana/MissJuliaRobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
157 lines (157 loc) · 4.84 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
{
"name": "Rose bot",
"description": "A Telegram Group Management Bot",
"logo": "https://telegra.ph/file/49bcd722fe06a425b3673.jpg",
"keywords": ["telethon", "sqlalchemy", "mongodb"],
"repository": "https://github.com/bumthx/Rosabot",
"success_url": "http://missjuliarobot.unaux.com",
"env": {
"API_KEY": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": "",
"required": true
},
"API_HASH": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": "",
"required": true
},
"STRING_SESSION": {
"description": "Get this value by running python3 session.py locally",
"value": "",
"required": true
},
"TOKEN": {
"description": "Get your bot token from @BotFather",
"value": "",
"required": true
},
"UPSTREAM_REPO_URL": {
"description": "Copy paste the repository url here (fork/official)",
"value": "https://github.com/deshadeethThisarana/Sensei",
"required": false
},
"OPENWEATHERMAP_ID": {
"description": "Get your own APPID from https://api.openweathermap.org/data/2.5/weather",
"value": "",
"required": false
},
"IBM_WATSON_CRED_URL": {
"description": "This is required for the speech to text module. Get your USERNAME from https://console.bluemix.net/docs/services/speech-to-text/getting-started.html",
"value": "",
"required": false
},
"IBM_WATSON_CRED_PASSWORD": {
"description": "This is required for the speech to text module. Get your PASSWORD from https://console.bluemix.net/docs/services/speech-to-text/getting-started.html",
"value": "",
"required": false
},
"LYDIA_API_KEY": {
"description": "This module needs CoffeeHouse API to work. So join https://telegram.dog/IntellivoidDev and send #activateapi and follow instructions",
"value": "",
"required": false
},
"OCR_API_KEY": {
"description": "Get an API Key from https://cloudmersive.com/ocr-api",
"value": "",
"required": false
},
"GBAN_LOGS": {
"description": "The group id for logging all gbans",
"value": "",
"required": true
},
"REM_BG_API_KEY": {
"description": "Get your own API key from https://www.remove.bg/",
"value": "",
"required": false
},
"SUDO_USERS": {
"description": "List of user id's who will have SUDO rights in your bot(they can gban/ungban users)",
"value": "1041727415",
"required": false
},
"YOUTUBE_API_KEY": {
"description": "Place your YouTube API Key here, check out https://developers.google.com/youtube/v3/getting-started)",
"value": "",
"required": false
},
"OWNER_ID": {
"description": "An integer of consisting of your ID",
"value": "1041727415",
"required": true
},
"OWNER_USERNAME": {
"description": "Your username without @",
"value": "DeshadeethThisarana",
"required": true
},
"BOT_ID": {
"description": "userid of the bot itself, use any other bot to get it",
"value": "",
"required": true
},
"TIME_API_KEY": {
"description": "Required for timezone information, get your key from https://timezonedb.com/api",
"value": "",
"required": false
},
"CASH_API_KEY": {
"description": "Required for currency converter, get your key from https://www.alphavantage.co/support/#api-key",
"value": "",
"required": false
},
"MONGO_DB_URI": {
"description": "Required for database connections",
"value": "",
"required": true
},
"WOLFRAM_ID": {
"description": "Required for Assistant module, get your own key from wolframalpha.com",
"value": "",
"required": false
},
"WALL_API": {
"description": "Get one from https://wall.alphacoders.com/api.php",
"value": "",
"required": false
},
"VIRUS_API_KEY": {
"description": "Get one from https://cloudmersive.com/virus-api",
"value": "",
"required": false
},
"GOOGLE_CHROME_BIN": {
"description": "Required for chromedriver",
"value": "/app/.apt/usr/bin/google-chrome",
"required": false
},
"CHROME_DRIVER": {
"description": "Required for chromedriver",
"value": "/app/.chromedriver/bin/chromedriver",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql"
},
{
"plan": "ormongo:5-mmap"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
},
{
"url": "https://github.com/heroku/heroku-buildpack-chromedriver"
}
]
}