django-whoop is a Django WHOOP App
Detailed documentation is in the "docs" directory.
- Add "whoop" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...,
"django_whoop",
]
- Include the WHOOP URLconf in your project urls.py like this:
path("whoop/", include("django_whoop.urls")),
-
Run
python manage.py migrate
to create the models. -
Visit the
/whoop/login
URL to sign in with WHOOP.