-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathapp.json
37 lines (36 loc) · 1.05 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
{
"name": "Open Web Calendar",
"description": "Embed a web calendar into your own website.",
"repository": "https://github.com/niccokunzmann/open-web-calendar",
"website": "https://open-web-calendar.quelltext.eu/",
"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
},
"OWC_SPECIFICATION": {
"description": "JSON or YAML content to alter the specification of all calendars.",
"value": "{}",
"required": false
}
},
"image": "heroku/python",
"keywords": [
"calendar",
"web",
"ical",
"open-source"
]
}