-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
131 lines (131 loc) · 3.94 KB
/
Copy pathapp.json
File metadata and controls
131 lines (131 loc) · 3.94 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
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
{
"name": "Rize_Probot",
"description": "A Telegram Group Management Bot",
"logo": "https://telegra.ph/file/4c35be1a1eab079a682cb.png",
"keywords": ["telethon", "sqlalchemy", "redis"],
"repository": "https://github.com/Godzilla-0/RizeKamishiro.git",
"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 GenerateStringSession.py locally",
"value": "",
"required": true
},
"OPENWEATHERMAP_ID": {
"description": "Get your own APPID from https://api.openweathermap.org/data/2.5/weather",
"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",
"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",
"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_SPACE_API_KEY": {
"description": "Get an API Key from http://OCR.Space",
"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/ or feel free to use http://telegram.dog/Remove_BGBot",
"required": false
},
"SUDO_USERS": {
"description": "List of user id's who will have SUDO rights in your bot(they can't be banned/warned etc. by the bot)",
"value": "",
"required": false
},
"YOUTUBE_API_KEY": {
"description": "Place your YouTube API Key here",
"value": "",
"required": false
},
"OWNER_ID": {
"description": "An integer of consisting of your ID",
"value": "",
"required": true
},
"OWNER_USERNAME": {
"description": "Your username",
"value": "",
"required": true
},
"TIME_API_KEY": {
"description": "Required for timezone information",
"value": "",
"required": false
},
"CASH_API_KEY": {
"description": "Required for currency converter",
"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
},
"GOOGLE_CHROME_BIN": {
"description": "For carbon.py",
"value": "/app/.apt/usr/bin/google-chrome",
"required": false
},
"CHROME_DRIVER": {
"description": "For carbon.py",
"value": "/app/.chromedriver/bin/chromedriver",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql"
},
{
"plan": "rediscloud"
}
],
"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"
}
]
}