CS3240 Project Repo
To run the Heroku app locally:
$ heroku local
To update local installations of packages from requirements:
$ pip install -r requirements.txt
To make a new branch from dev:
$ git checkout dev
$ git pull origin dev
$ git checkout -b newBranch
(The -b flag on checkout creates a new branch and switches to it)