-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
49 lines (49 loc) · 1.21 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
{
"name": "Chat Backup",
"description": "backup the chat",
"keywords": [
"charindith",
"chat backup",
"Telegram Bot"
],
"repository": "https://github.com/charindithjaindu/ChatBackupBot",
"success_url": "https://t.me/charindith",
"env": {
"BOT_TOKEN": {
"description": "Your Telegram Bot Token from @BotFather",
"value": ""
},
"API_HASH": {
"description": "Your API Hash from my.telegram.org",
"value": ""
},
"API_ID": {
"description": "Your APP ID from my.telegram.org",
"value": ""
},
"LOG_CHANNEL": {
"description": "log channel id",
"value": ""
},
"OWNER_UNAME": {
"description": "Owner usernae",
"value": ""
},
"SESSION": {
"description": "get pyrogram session from replit.com/@KeselekPermen/UserButt#main.py",
"value": ""
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}