For more information on concepts covered in this lesson, you can check out:
Here are the command-line snippets used in this lesson:
$ heroku config:set DISABLE_COLLECTSTATIC=1
$ git push --set-upstream heroku master
$ heroku open
$ heroku logs --tail
$ vim Procfile
$ git status
$ git add Procfile
$ git commit -m "Specify the command to run your project"
$ git push heroku
$ heroku open
$ vim portfolio/settings.py
$ git commit -am "Specify allowed domains"
$ git push heroku
$ heroku open
web: python manage.py runserver 0.0.0.0:$PORT