-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
48 lines (48 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
{
"name": "Sticker Ninja Bot",
"description": "Deploy Sticker Ninja Bot on Heroku.",
"keywords": [
"heroku",
"telegram"
],
"repository": "https://github.com/M3chD09/StickerNinjaBot",
"env": {
"BOT_TOKEN": {
"description": "Telegram bot token.",
"value": ""
},
"BOT_WEBHOOK": {
"description": "Telegram bot webhook, where app-name is replaced with your app name.",
"value": "https://app-name.herokuapp.com/"
},
"STICKER_COUNT_LIMIT": {
"description": "The maximum number of stickers that can be sent in a single pack. Default is 100.",
"required": false
},
"CACHE_TICK": {
"description": "The interval at which the user cache is refreshed. The default is 10s.",
"required": false
},
"CACHE_EXPIRATION": {
"description": "The time after which the user cache is expired. Default is 15m",
"required": false
},
"DATABASE_TYPE": {
"description": "The type of database to use. Currently mysql, pgsql, and sqlite are supported.",
"value": "pgsql"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
],
"buildpacks": [
{
"url": "heroku/go"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}