This repository was archived by the owner on May 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathapp.json
More file actions
72 lines (72 loc) · 2.14 KB
/
app.json
File metadata and controls
72 lines (72 loc) · 2.14 KB
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
65
66
67
68
69
70
71
72
{
"name": "PyroBot",
"description": "A Simple Telegram Bot written in Python using Pyrogram.",
"keywords": [
"telegram",
"python",
"pyrogram",
"pyrobot",
"pyrogram bot",
"telegram bot",
"tg bot"
],
"repository": "https://github.com/divkix/PyroBot",
"success_url": "https://t.me/DivideProjects",
"website": "https://github.com/divkix",
"stack": "heroku-20",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable environment variables.",
"value": "ANYTHING"
},
"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
},
"TOKEN": {
"description": "Bot Token - Get this value from @BotFather",
"required": true
},
"PREFIX_HANDLER": {
"description": "Prefix for bot commands, such as '/' and '!', sperate by spaces",
"required": true,
"value": "/ !"
},
"NO_LOAD": {
"description": "Plugins you don't want to loaded by bot",
"required": false
},
"OWNER_ID": {
"description": "Your Telegram ID, get by sending /info to @Alita_Robot on Telegram",
"required": true
},
"POETRY_VERSION": {
"description": "Settings this will change poetry version. DO NOT CHANGE IF YOU DON'T KNOW WHAT YOURE DOING",
"required": true,
"value": "1.1.6"
},
"PYTHON_RUNTIME_VERSION": {
"description": "Settings this will change the python version. DO NOT CHANGE IF YOU DON'T KNOW WHAT YOURE DOING",
"required": true,
"value": "3.9.5"
}
},
"buildpacks": [
{
"url": "https://github.com/moneymeets/python-poetry-buildpack.git"
},
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}