InstallationΒΆ

The package is published on PyPI and can be installed with pip (or any equivalent):

pip install django-scim2-server

Add the app to your INSTALLED_APPS:

INSTALLED_APPS = [
    # ...
    "django_scim2_server",
]

Include the SCIM URL routes in your root URL configuration:

from django.urls import include, path

urlpatterns = [
    # ...
    path("scim/v2/", include("django_scim2_server.urls")),
]

Run migrations to create the SCIM database tables:

python manage.py migrate

Next, see the section about usage to learn how to configure and use the app.