February 2010
1 post
Deploying Typo to Heroku
Install the heroku gem.
$ [sudo] gem install heroku
Download and extract typo.
Create a git repository and commit the typo source code to the repository.
$ cd <wherever you extracted typo>
$ git init
$ git add *
$ git commit -m 'The typo package.'
Typo tries to create a couple of empty folders on startup. We need to pre-empt this as heroku doesn’t allow writing.
$ touch...