From 2d2833a1c16a4a09a77b9ae5c3c119c6e690a6ba Mon Sep 17 00:00:00 2001 From: Stephen Date: Fri, 26 Mar 2021 10:58:20 +0200 Subject: [PATCH] Update readme with required packages --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 967e47f..8e9d0e4 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ Install bossoidc2: ```sh pip install mozilla-django-oidc pip install drf-oidc-auth +pip install django-oidc # Replace v2.0.0 with the tag or branch you need. pip install git+https://github.com/jhuapl-boss/boss-oidc2.git@v2.0.0#egg=boss-oidc2 @@ -87,7 +88,7 @@ OIDC_CLAIMS_VERIFICATION = 'preferred_username sub' # Allow this user to not have an email address during OIDC claims verification. KEYCLOAK_ADMIN_USER = 'bossadmin' -from bossoidc.settings import * +from bossoidc2.settings import * configure_oidc(auth_uri, client_id, public_uri, scope) # NOTE: scope is optional and can be left out ```