EECS 485

Lecture 05 and 06 Mini-Project

In this mini-project, you will be implementing a website that tracks sports teams and their scores when they play each other

Setup

Download the starter files, and extract them.

Set up a virtual environment and install the project dependencies:

$ python3 -m venv env
$ env/bin/activate
$ pip install -r requirements.txt
$ pip install -e .

You can run the Flask app using the command:

./run.sh

Then, visit localhost:8000 in your browser to access the app.

Follow the instructions in the HTML files about the pages you need to implement.