forked from AnnabelleTG/Annabelle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
58 lines (58 loc) · 1.71 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
{
"name": "Annabelle UserBot",
"description": "A powerful userbot fully running in pyrogram .",
"keywords": [
"Telegram",
"Userbot",
"Heroku",
"PyrogramUserBot"
],
"repository": "https://github.com/AnnabelleTG/Annabelle",
"website": "https://t.me/AnnabelleUB",
"success_url": "https://github.com/AnnabelleTG/Annabelle",
"env": {
"API_ID": {
"description": "API_ID from website or bot",
"required": "True"
},
"API_HASH": {
"description": "You can get this from @s4h_api_idbot",
"required": "True"
},
"BOT_TOKEN": {
"description": "Give a Bot token. Get it from @botfather",
"required": "True"
},
"SESSION_STRING": {
"description": "Your telegram session must be pyrogram session use @Pyrogram_String_Bot",
"required": "True"
},
"DATABASE_NAME": {
"description": "Your mongodb database name (use any name)",
"required": "True"
},
"DATABASE_URL": {
"description": "Mongodb database url",
"required": "True"
},
"HANDLER": {
"description": "You can set your prefix example : .,?+",
"required": "True"
},
"SUDO_USERS": {
"description": "ID of users who can use your bot's certain other than you",
"required": "False"
},
"MY_ID": {
"description": "Your telegram id",
"required": "True"
}
},
"stack": "heroku-20",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}