Skip to content

How to Install(locally)

This will guide you through the local deploy

Prerequisites

  • Python v.12 >
  • Python virtualenv (whichever you prefer)

Quickstart

1. Create virtual environment

Choose one of the following methods:

python -m venv venv
pyenv virtualenv 3.12 school-clubs-env
pyenv local school-clubs-env

2. Activate virtual environment

source venv/bin/activate
pyenv activate school-clubs-env

3. Install packages

From the root of the project:

cd deliverable-2
pip install -r requirements.txt
cd deliverable-2
pip install -r requirements.txt

4. Start the local server

flask run
flask run

Visit http://localhost:8000 to access the application.

See Configuration for more details.