Make sure you are in the root directory
python -m venv .venv .
Mac:
source .venv/bin/activate
Windows:
.venv/Scripts/activate
cd backend/clubscheduler-backend
pip install -r requirements.txt
To start backend server
python manage.py runserver
To create super user
python manage.py createsuperuser
To migrate changes to database
python manage.py makemigrations
python manage.py migrate
Make sure you are in root directory
cd frontend/clubscheduler-frontend
npm install
npm start