-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.json
25 lines (25 loc) · 1.1 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
{
"name": "uniquify-bot",
"description": "Telegram bot to remove duplicate media from a chat",
"keywords": ["telegram", "duplicate", "media", "removing", "bot"],
"logo": "https://img.apksum.com/4c/com.duplicate.files.remover.duplicatefinderfiles/1.0/icon.png",
"website": "https://github.com/OxMohsen/uniquify-bot",
"repository": "https://github.com/OxMohsen/uniquify-bot",
"env": {
"APP_ID": {"description": "Get this value from https://my.telegram.org", "required": true},
"API_HASH": {"description": "Get this value from https://my.telegram.org" , "required": true},
"TG_BOT_TOKEN": {"description": "Get bot token from @BotFather bot","required": true},
"TG_USER_SESSION_NAME": {"description": "Session name","required": false},
"TG_USER_SESSION_STRING": {"description": "Session string of user bot","required": false},
"AUTH_USERS": {"description": "User ids of authorized users separated by space", "required": true}
},
"buildpacks": [
{"url": "heroku/python"}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}