This is a build pack for hosting static websites generated by gollum-site on Heroku.
It is basically the PHP buildpack with PHP removed and adjusted detection code.
Inside of your gollum repo:
- If you haven't already created a layout, import the default one:
gollum-site import
- Create your static website locally:
gollum-site generate
. - Change to the newly created directory:
cd _site
. - Initialize a new Git repository there:
git init
. - Add the generated files to the new repo:
git add . && git commit -m "Initial commit"
- Create a new Heroku app:
heroku create myapp --buildpack https://github.com/philippbosch/heroku-buildpack-gollum-site
- Push your content to Heroku:
git push heroku master
- Have a look:
heroku open