-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
78 lines (78 loc) · 2.57 KB
/
app.json
File metadata and controls
78 lines (78 loc) · 2.57 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
{
"name": "Userbutt Fallback",
"description": "[Userbutt] A modular Telegram userbot running on Python 3.8",
"keywords": [
"telegram",
"userbot",
"plugin",
"modular",
"productivity"
],
"repository": "https://github.com/keselekpermen69/userbutt",
"website": "https://telegra.ph/How-to-host-a-Telegram-Userbot-11-02",
"stack": "container",
"env": {
"API_KEY": {
"description": "Get this value from my.telegram.org.",
"required": true
},
"API_HASH": {
"description": "Get this value from my.telegram.org.",
"required": true
},
"STRING_SESSION": {
"description": "Get this value by running [python3 string_session.py] in Termux or local system.",
"required": true
},
"HEROKU_API_KEY": {
"description": "Your Heroku main account API key, get it from 'https://dashboard.heroku.com/account'",
"value": "",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Heroku app name main, the first app you deploy for userbot.",
"value": "",
"required": true
},
"HEROKU_API_KEY_FALLBACK": {
"description": "Your Heroku fallback account API key this is only needed if you choose to run fallback into different heroku account, get it from 'https://dashboard.heroku.com/account'",
"required": false
},
"HEROKU_APP_FALLBACK_NAME": {
"description": "Heroku app name fallback, this should be app name you make now.",
"value": "",
"required": true
},
"UPSTREAM_REPO_URL": {
"description": "Your forked repo.",
"value": "https://github.com/keselekpermen69/userbutt",
"required": true
},
"MAIN_REPO_BRANCH": {
"description": "Your main branch repo.",
"value": "sql-extended",
"required": true
},
"UPSTREAM_REPO_BRANCH": {
"description": "Your forked repo branch.",
"value": "fallback",
"required": true
},
"BOTLOG": {
"description": "Incase you want to turn off logging, put this to false",
"value": "False"
},
"BOTLOG_CHATID": {
"description": "ChatID of the Log group. Set it to '0' if BOTLOG = False and/or if LOGSPAMMER = False.",
"value": "0"
},
"CONSOLE_LOGGER_VERBOSE": {
"description": "If you need verbosity on the console logging",
"value": "False"
},
"LOGSPAMMER": {
"description": "Set this to True in case you want the error logs to be stored in the userbot log group, instead of spitting out the file in the current chat, requires a valid BOTLOG_CHATID to be set.",
"value": "True"
}
}
}