Deployment
Build and deploy a node express server to Heroku
// in terminal
demo$ git init
demo$ git add -am “Initial commit”// in terminal
demo$ heroku login
// follow prompts to enter your Heroku login credentials
demo$ heroku create
// you should see your server’s url after this has finished.
demo$ git push heroku master// in terminal
demo$ heroku openLast updated