Download the repo and navigate there from the command line:
git clone git@github.com:s2t2/twitoff-15.git
cd twitoff-15
Setup and activate a virtual environment:
pipenv install
pipenv shell
Setup the database:
# Windows users can omit the "FLASK_APP=web_app" part...
FLASK_APP=web_app flask db init #> generates app/migrations dir
# run both when changing the schema:
FLASK_APP=web_app flask db migrate #> creates the db (with "alembic_version" table)
FLASK_APP=web_app flask db upgrade #> creates the specified tables
Run the web app:
FLASK_APP=web_app flask run