Setting up Heroku

##Here are the steps to push a rails project to Heroku##

  1. Install Heroku
gem install heroku

2. Create a heroku login with email and password

heroku Create

3) Change the name of the app

heroku apps:rename demo-app 

devcenter rename link

4) Push the file to heroku

git push heroku master

devcenter git link

5) Check the database

heroku run rake db:version

devcenter rake link

7) Perform a db migrate

heroku run rake --trace db:migrate

8) Console:

heroku run console

Further reading:

devcenter link

Any questions on this, please feel free to ask. We’re here to help…