Skip to content

Instantly share code, notes, and snippets.

@joshcutler
Created December 19, 2011 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshcutler/1499366 to your computer and use it in GitHub Desktop.
Save joshcutler/1499366 to your computer and use it in GitHub Desktop.
Setup Rook on heroku
mkdir rookonheroku
cd rookonheroku
mkdir bin
echo "puts 'OK'" > config.ru
echo "source 'http://rubygems.org'\n gem 'rack'" > Gemfile
bundle install
git init .
git add .
git commit -m "First Commit"
heroku apps:create myproject --stack=cedar
git push heroku master
heroku ps:scale web=0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment