-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
app.json
32 lines (31 loc) · 922 Bytes
/
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
{
"name": "Open Web Calendar",
"description": "Embed a web calendar into your own website.",
"repository": "https://github.com/niccokunzmann/open-web-calendar",
"website": "https://github.com/niccokunzmann/open-web-calendar",
"success_url": "/",
"env": {
"APP_DEBUG": {
"description": "Whether to use debug mode to run the app (true/false). It defaults to true.",
"value": "true",
"required": false
},
"CACHE_REQUESTED_URLS_FOR_SECONDS": {
"description": "To speed up loading time, the requests to urls can be cached. This also delays displaying updates.",
"value": "600",
"required": false
},
"WORKERS": {
"description": "How many workers should run in parallel to work on requests.",
"value": "4",
"required": true
}
},
"image": "heroku/python",
"keywords": [
"calendar",
"web",
"ical",
"open-source"
]
}