Octopress does a great job in setting you up to use heroku to host your site. Details for the almost trivial set up can be found here. To summarize, after installing and setting up Heroku, create a Heroku repository as per usual:
1
|
|
Edit the .gitignore
file and remove public
so that the it is included with git changes and then run the following:
1 2 3 4 |
|
You will need to run the above every time you add a new post so to make things easier, you can add a rake task to the Rakefile to handle the less exciting bits for you. Mine looks like:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
And with that, all I have to do new after editing or creating a post is simply run:
1
|
|
And life is good.