forked from drmhdh/ChatBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
64 lines (64 loc) · 1.46 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
61
62
63
64
{
"name": "ChatBot",
"description": "Simple ChatBot in Telethon.",
"logo": "https://static.botsrv.com/website/img/quriobot_favicon.1727b193.png",
"keywords": [
"telegram",
"chatbot",
"plugin",
"telegram-chatbot",
"productivity"
],
"repository": "https://github.com/DevsExpo/ChatBot",
"website": "https://github.com/DevsExpo/ChatBot",
"success_url": "https://github.com/DevsExpo/ChatBot",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable heroku.",
"value": "ANYTHING"
},
"BOT_TOKEN": {
"description": "Your Bot Token.",
"value": ""
},
"CUSTOM_IMG": {
"description": "Link Of A Image For Start.",
"value": "",
"required": false
},
"DUMB_CHAT": {
"description": "Group ID Where Your Logs Will Go.",
"value": ""
},
"OWNER_ID": {
"description": "Your Owner ID",
"value": ""
},
"CUSTOM_START": {
"description": "Custom Message For Start.",
"value": "",
"required": false
},
"APP_ID": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}