Skip to main content

A Django app that handles the communication between the IDP and the products for the authorization of users.

Project description

  1. Add “idp_user” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'idp_user',
    ]
  2. Add the settings of the app in settings.py like this:

    APP_ENV = "development"/"staging"/"production"
    
    IDP_USER_APP = {
        "APP_IDENTIFIER": "str",
        "ROLES": "path.to.roles_choices",
        "USE_LOCAL_IDP_IN_DEV": True,
        "USER_UPDATES_TOPIC_NAME": f"{APP_ENV}_user_updates",
        "FAUST_APP_PATH": "backend.kafka_consumer.app",
        "OPA_DOMAIN": os.getenv("OPA_DOMAIN"),
        "OPA_VERSION": os.getenv("OPA_VERSION"),
        "IDP_URL": os.getenv("IDP_URL"),
        "USE_REDIS_CACHE": True,
        "ALLOWED_PATHS": ["/", "..."],
        "USE_OPA": True
    }
  3. Run python manage.py migrate to create the models.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_idp_user-0.4.8.tar.gz (13.1 kB view hashes)

Uploaded Source

Built Distribution

django_idp_user-0.4.8-py3-none-any.whl (19.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page