I\'m trying to deploy an open source project of mine to heroku, it is by necessity very simple with just static html and javascript. But do they not support static sites?
2020 Update:
If you get a blank page with the PHP answer mentioned here, try this -
If your homepage is at index.html :
echo '' > index.php
echo '{}' > composer.json
Creating a Git repo and committing after adding files :
git init
git add .
git commit -m "My site ready for deployment."
Heroku deployment -
heroku login
heroku apps:create my-static-site-example
git push heroku master