-
Notifications
You must be signed in to change notification settings - Fork 111
/
app.json
106 lines (106 loc) · 3.63 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
{
"addons": [
{
"plan": "heroku-postgresql"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
},
{
"url": "https://github.com/heroku/heroku-buildpack-chromedriver"
}
],
"description": "A modular Telegram userbot running on Python 3.9 with an sqlalchemy database,",
"env": {
"ALIVE_MSG": {
"description": "Custom message for .alive command. We have our own alive message by default.",
"required": false,
"value": "`Hello Seden! I am alive \u2764\ufe0f`"
},
"API_HASH": {
"description": "Get this value from my.telegram.org.",
"required": true
},
"API_ID": {
"description": "Get this value from my.telegram.org.",
"required": true
},
"BOT_PREFIX": {
"description": "It changes your bot pattern (default pattern is '.' (dot)).",
"required": false
},
"CHROME_DRIVER": {
"description": "ChromeDriver location for selenium based modules.",
"required": false,
"value": "/usr/bin/chromedriver"
},
"HEROKU_APPNAME": {
"description": "Add the Heroku app name here. Required for updates.",
"required": true
},
"HEROKU_KEY": {
"description": "Heroku API key, get it from 'https://dashboard.heroku.com/account. Required for updates.",
"required": true
},
"LOG_ID": {
"description": "Chat ID of the Log group. If value is 0, log feature not work. If value is left blank, logs send in Saved Messages",
"required": false
},
"LOG_VERBOSE": {
"description": "If you need verbosity on the console logging.",
"required": false,
"value": "False"
},
"PM_AUTO_BAN": {
"description": "PM Auto Ban Feature. Also known as 'bleep blop, this is a bot...'.",
"required": false,
"value": "False"
},
"PM_MSG_COUNT": {
"description": "Custom PM Message Count for PM Auto Ban feature. Also known as Pmpermit Module.",
"required": false,
"value": "5"
},
"PM_UNAPPROVED": {
"description": "Custom message for PM Auto Ban feature. Also known as Pmpermit Module.",
"required": false
},
"REPO_URL": {
"description": "It helps your bot updates, if you maintain a fork repo you can add your repo URL here.",
"required": true,
"value": "https://github.com/TeamDerUntergang/Telegram-SedenUserBot"
},
"SEDEN_LANG": {
"description": "It permanently changes your bot's lang. Default is English (en).",
"required": false,
"value": "en"
},
"SESSION": {
"description": "Get this value by running python3 session.py in terminal or bash script.",
"required": true
}
},
"formation": {
"seden": {
"quantity": 1,
"size": "free"
}
},
"keywords": [
"telegram",
"userbot",
"python",
"seden",
"module",
"pyrogram",
"postgresql"
],
"logo": "https://i.imgur.com/GL1yJpN.png",
"name": "Telegram SedenBot",
"repository": "https://github.com/TeamDerUntergang/Telegram-SedenUserBot",
"stack": "container",
"success_url": "https://telegram.dog/SedenUserBot",
"website": "https://teamderuntergang.github.io/"
}