Skip to content

Instantly share code, notes, and snippets.

@minhajuddin
Created September 30, 2011 14:13
Show Gist options
  • Select an option

  • Save minhajuddin/1253847 to your computer and use it in GitHub Desktop.

Select an option

Save minhajuddin/1253847 to your computer and use it in GitHub Desktop.
  1. have rails installed locally
  2. create a new rails app
  3. install git and run the following command from root dir git init && git add . && git commit -m 'init'
  4. signup for heroku with an email/pwd
  5. create an ssh key by running the command below: ssh-keygen
  6. run the command below from the root directory of the application heroku create -s cedar
  7. add a line gem 'pg' to your Gemfile
  8. bundle install
  9. git add . && git push heroku master

Now your app will be available at http://.heroku.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment