forked from jurgelenas/pdfify-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
38 lines (38 loc) · 1.02 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
{
"name": "PDFify",
"description": "This app is HTML to PDF service.",
"keywords": [
"pdf",
"html",
"html to pdf",
"html 2 pdf"
],
"website": "https://www.github.com/jurgelenas/pdfify",
"repository": "https://www.github.com/jurgelenas/pdfify",
"env": {
"HTML_SIZE_LIMIT": {
"description": "Controls the maximum request body size e.g. 100kB, 2mb.",
"value": "2mb"
},
"WORKER_COUNT": {
"description": "Number of workers to maintain. One or two per CPU core is recommended.",
"value": "2"
},
"WORKER_DEATH": {
"description": "Number of items to process before restarting a worker to prevent phantomjs memory leaks.",
"value": "20"
},
"PAGE_DEATH": {
"description": "Number of milliseconds to wait before before requeuing an item.",
"value": "8000"
}
},
"buildpacks": [
{
"url": "https://github.com/stomita/heroku-buildpack-phantomjs"
},
{
"url": "http://github.com/heroku/heroku-buildpack-nodejs.git"
}
]
}