-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
37 lines (37 loc) · 1.17 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
{
"name": "VWapi",
"description": "Visual Weather api. Returns beautiful pictures with the current weather.",
"repository": "https://github.com/mishailovic/VWapi",
"website": "https://github.com/mishailovic/VWapi",
"stack": "container",
"env": {
"APP_NAME": {
"description": "Heroku app name",
"value": "vwapi"
},
"BOT_TOKEN": {
"description": "Your Telegram bot token",
"value": ""
},
"LRU_SIZE": {
"description": "Size on an LRU cache, by default takes around 51 MB of RAM when full",
"value": "1024",
"required": false
},
"LRU_EXPIRE": {
"description": "Time in seconds after which LRU cache entry expires (default: 30 min)",
"value": "1800",
"required": false
},
"MONGO_DB": {
"description": "Telegram bot MongoDB database for analytics (disabled if not set)",
"value": "",
"required": false
},
"API_BASE": {
"description": "Change it to your local instance for better telegram bot performance.",
"value": "https://vwapi.herokuapp.com",
"required": false
}
}
}