Run a static web site from Markdown files.
-
Create an
index.mdfile:echo "# hello, world" > index.md -
Create a git repo containing the file:
git init git add index.md git commit -m init -
Create an app on Heroku:
heroku create -s cedar --buildpack https://github.com/jamesward/heroku-buildpack-markdown.git -
Push the repo to Heroku:
git push heroku master -
Open your web app:
heroku open