forked from BikashHalderNew/BikashChatBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
54 lines (54 loc) · 1.52 KB
/
app.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "BikashRobot",
"description": "A Telegram Best Artificial Intelligence Chat Bot , written in Python with Pyrogram",
"logo": "https://te.legra.ph/file/f73af9a4ffe130a83d8d2.jpg",
"stack": "container",
"env": {
"BOT_TOKEN": {
"description": "Input Bot token here",
"required": true
},
"OWNER_USERNAME": {
"description": "Input Owner Username here ( Without @)",
"required": true
},
"SUPPORT_GROUP": {
"description": "Input support group username here ( Without @)",
"required": true
},
"UPDATES_CHANNEL": {
"description": "Input updates channel username here ( Without @) ",
"required": true
},
"BOT_USERNAME": {
"description": "Input Bot USERNAME here ( Without @)",
"required": true
},
"BOT_IMAGE": {
"description": "Input Bot start pic link here",
"required": true
},
"MONGO_URL": {
"description": "Input mongo db url here",
"required": true
},
"API_ID": {
"description": "Input api id here",
"required": true
},
"API_HASH": {
"description": "Input api hash here",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"addons": [
{
"plan": "heroku-postgresql"
}
]
}