Deploying to heroku

This describes the process of deploying the project to heroku.


This is sub-layout for documentation pages

Top

1 Requirements

2 Deploying

Navigate to the heroku app folder

  cd /Desktop/Projects/herokuTutorial/zombiesnode
  

Add changes to heroku's git

  git add -A
  

You can check the changes using

  git status
  

Commit changes

  git commit -m 'message'
  

Push the project to the heroku's git

  git push heroku master
  

You can open the heroku application

  heroku open