-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.json
36 lines (36 loc) · 807 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
32
33
34
35
36
{
"name": "BreezyPDF Lite",
"description": "Submit an HTML string, get a PDF back, rendered by Google Chrome. Built by BreezyPDF.com",
"keywords": [
"pdf",
"chrome",
"service",
"heroku",
"html2pdf"
],
"scripts": {
},
"stack": "heroku-18",
"repository": "https://github.com/danielwestendorf/breezy-pdf-lite",
"env": {
"PRIVATE_TOKEN": {
"description": "A secret key for submitting tokens to the API.",
"generator": "secret"
},
"NODE_ENV": {
"description": "node env",
"value": "production"
}
},
"addons": [
],
"image": "heroku/nodejs",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
}
]
}