-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
30 lines (30 loc) · 929 Bytes
/
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
{
"name": "Pyroku",
"description": "A Pyrogram bot or userbot, which can easily be deployed to Heroku.",
"repository": "https://github.com/fgallaire/Pyroku",
"logo": "https://avatars1.githubusercontent.com/u/34474300?s=280&v=4",
"keywords": ["python", "pyrogram", "telegram", "bot", "userbot", "pyroku"],
"image": "heroku/python",
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
},
"env": {
"API_ID": {
"description": "App api_id from https://my.telegram.org"
},
"API_HASH": {
"description": "App api_hash from https://my.telegram.org"
},
"BOT_TOKEN": {
"description": "Bot token from https://t.me/BotFather",
"required": false
},
"SESSION_STRING": {
"description": "Session string from https://docs.pyrogram.org/api/methods/export_session_string#pyrogram.Client.export_session_string",
"required": false
}
}
}