Setting up Heroku
##Here are the steps to push a rails project to Heroku##
- 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
4) Push the file to heroku
git push heroku master
5) Check the database
heroku run rake db:version
7) Perform a db migrate
heroku run rake --trace db:migrate
8) Console:
heroku run console
Further reading:
Any questions on this, please feel free to ask. We’re here to help…