This repo is a starter flask app for teaching purposes.
git clone <URL>

If you don’t already, install python and pip. If you’re not sure if you have python installed, try running it locally in your command line with python --version.

Navigate to the directory where you cloned this repo.
Run the following command to install the required packages:
pip install -r requirements.txt
Run the following command to start the flask app defined in the app.py file:
flask run

Open your browser and navigate to http://127.0.0.1:5000 to see the app running locally.
