How can I run Wordpress on Heroku?

A friend recommend running my Wordpress sites at Heroku, a few months ago. So what steps do I have to talk to make this happen?
1 answer

This way you can setup a Wordpress installation at Heroku

Follow these steps:

  • At first you have to clone a project from a GitHub Repo
    >> git clone git://github.com/mhoofman/wordpress-heroku.git your_app_name
  • Then you can create your app
    >> cd your_app_name
    >> heroku create your_app_name
  • Now you should create a database
    >> heroku addons:add heroku-postgresql:dev
  • In the root folder of your app exists a file called wp-config-sample.php rename it to wp-config.php
    In this file you will find a few lines like define('AUTH_KEY',...) and so on.
    Replace this lines by some random generated lines from here: https://api.wordpress.org/secret-key/1.1/salt/
  • Thats basically it. Have fun using Wordpress on Heroku.
    For further information of how to go on and get Wordpress running take a look here:
    http://codex.wordpress.org/Installing_WordPress

[I really had this problem a few months ago and solved it this way]