- have rails installed locally
- create a new rails app
- install git and run the following command from root dir git init && git add . && git commit -m 'init'
- signup for heroku with an email/pwd
- create an ssh key by running the command below: ssh-keygen
- run the command below from the root directory of the application heroku create -s cedar
- add a line
gem 'pg'to your Gemfile - bundle install
- git add . && git push heroku master
Now your app will be available at http://.heroku.com