back to notes

Pushing a Sinatra app to Heroku

Fresh Ruby Installation

  • Ruby 1.9.2 windows installer installs Ruby in C:\

Bundler

  • run all this in windows cmd shell
  • gem install bundle
  • create Gemfile
  • bundle install

Heroku

  • run all this in windows cmd shell
  • gem install heroku
  • create config.ru file and add to git
  • add git path to windows PATH variable
  • heroku create webfactors
  • in Git bash: git push heroku master


last updated june 2011