-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.json
61 lines (61 loc) · 1.41 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
{
"name": "Telegram Bot",
"description": " Telegram Ai",
"keywords": [
"Telegram"
],
"repository": "https://github.com/GlobalTechInfo/TELEGRAM-AI",
"stack": "container",
"env": {
"OWNER_ID": {
"description": "User Id",
"required": false,
"value": ""
},
"BOT_TOKEN": {
"description": "Telegram Bot Token",
"required": true,
"value": ""
},
"DATABASE_URL": {
"description": "your mongodb database url",
"required": false,
"value": ""
},
"PREFIX": {
"description": "put any one symbol here except @ and + , leave it Blank if you want to use multiple prefix",
"required": false,
"value": ""
},
"HKEY": {
"description": "Put your Heroku api key Here , Get one from here https://dashboard.heroku.com/account",
"required": true,
"value": ""
},
"HAPP": {
"description": "Put the Heroku app name, same as above entered",
"required": true,
"value": ""
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/DuckyTeam/heroku-buildpack-imagemagick.git"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
}
}