This repo is a starter flask app for teaching purposes.
- If you haven't already, set up git.
- Click the green "Code" button in the top right corner of this page.
- Copy the URL in the dropdown.
- Open your terminal and navigate to the directory where you want to clone this repo.
- Run the following command:
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.