-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathapp.json
60 lines (60 loc) · 1.84 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
{
"name": "BROADCAST BOT",
"description": "A simple Telegram bot that can broadcast messages and media to the bot subscribers. with mongo DB support.",
"logo": "",
"keywords": [
"Pyrogram",
"bot",
"broadcast Bot",
"Telegram Bot",
"NacBots"
],
"website": "https://t.me/NacBots",
"repository": "https://github.com/nacbots/BroadcastBot",
"success_url": "https://github.com/nacbots",
"env": {
"BOT_TOKEN": {
"description": "You Telegram Bot Token from @BotFather",
"required": true
},
"API_HASH": {
"description": "Your API Hash from my.telegram.org",
"required": true
},
"API_ID": {
"description": "Your APP ID from my.telegram.org",
"required": true
},
"BROADCAST_AS_COPY": {
"description": "Value should be True or False. Broadcast with Forward Tag or as Copy.(Without Forward Tag)",
"value": "True",
"required": false
},
"DB_URL": {
"description": "MongoDB.com database url",
"required": true
},
"DB_NAME": {
"description": "A database name without white space(example : broadcastbot)",
"value": "BroadcastBot",
"required": false
},
"AUTH_USERS": {
"description": "Create a list of User Ids to use this bot(ADMINS). Seperate by space. At least one required.",
"required": true
},
"LOG_CHANNEL": {
"description": "ID of a Channel which you want to RECEIVE LOGS.",
"required": true
}
},
"buildpacks": [
{"url": "heroku/python"}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}