Prev Lesson | TOC | Next Lesson

Deploy to heroku

Goal:

OK. We've got an empty app and it has been added to git. What now? Ship it!

Steps:

In your terminal, try:

$ heroku create
$ git push heroku master
$ heroku open

What Just Happened?

While I realize that at this point this isn't all that exciting, the point is that it doesn't get more difficult than this as we add more functionality to the application. Your typical process will look like:

workflow

  1. Add/change some functionality.
  2. git commit -m "msg" files
  3. git push heroku master
  4. (wash, rinse, repeat)

and boom! Your changes are live!

Prev Lesson | TOC | Next Lesson