A web-based application to track my workouts using Django and React
python manage.py runserver
cd ui
npm run dev
- Incompatible with Django 4.x
- Installing this library will stop the server from starting
- To fix it: .venv -> Lib -> site-packages -> corsheaders -> signal.py file.
from django.dispatch import Signal
# Return Truthy values to enable a specific request.
# This allows users to build custom logic into the request handling
check_request_enabled = Signal()