-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
43 lines (43 loc) · 1.28 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
{
"name": "DeadSnake",
"description": "Telegram userbot using tgSnake based on GramJS",
"keywords": [
"telegram",
"userbot",
"javascript"
],
"repository": "https://github.com/dickymuliafiqri/DeadSnake",
"env": {
"HEROKU_APP_NAME": {
"description": "This is exactly the same with 'App name' field on upper of this page, used to identify your userbot app."
},
"HEROKU_API_KEY": {
"description": "Get this value from dashboard.heroku.com/account"
},
"API_ID": {
"description": "Get this value from my.telegram.org."
},
"API_HASH": {
"description": "Get this value from my.telegram.org."
},
"STRING_SESSION": {
"description": "Run generator.js or any other services to get one."
},
"CHAT_LOG": {
"description": "ChatID of the Log group, used to send error logs.",
"value": -10012345678
},
"LOGGER": {
"description": "Log level (none, info, warn, error, debug).",
"value": "info"
},
"ACCOUNT_NAME": {
"description": "Name to be displayed at .alive message.",
"required": false
},
"BANNER_IMAGE": {
"description": "Image to be displayed at .alive message, you can pass it with direct image url link or image path.",
"required": false
}
}
}