Skip to content
This repository has been archived by the owner on Feb 5, 2023. It is now read-only.

Try to run on Heroku #41

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "SVG to Image Proxy",
"description": "A web service to create PNGs from SVGs",
"keywords": ["svg", "png", "image", "proxy"],
"website": "https://shields.io/",
"repository": "https://github.com/badges/svg-to-iamge-proxy",
"logo": "httpx://shields.io/favicon.png",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do not have favicon at https://shields.io/favicon.png, but why httpx://shields.io/favicon.png :-)? It this intentional?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, I mistyped!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@platan Any interest in taking a crack at getting this running on Heroku?

"buildpacks": [
{
"url": "jontewks/puppeteer"
}
],
"env": {
"PUPPETEER_SKIP_CHROMIUM_DOWNLOAD": {
"value": "false"
},
"BASE_URL": {
"description": "The server that is hosting the SVGs",
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}