How to deploy a static website to Heroku
This is a quick tutorial explaining how to get a static website hosted on Heroku.
Why do this?
Heroku hosts apps on the internet, not static websites. To get it to run your static portfolio, personal blog, etc., you need to trick Heroku into thinking your website is a PHP app. This 6-step tutorial will teach you how.
touch composer.json
touch index.php
<?php include_once("home.html"); ?>
{}
git push heroku master
Done! Visit your deployed single-page website, hosted by Heroku (as a fake PHP app ☺).