Skip to content

iHela Provider is a simple Django app to enable oAuth2 authentication with django-allauth.

License

Notifications You must be signed in to change notification settings

UbuhingaVizion/ihela-oauth2-provider

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iHela Provider

iHela Provider is a simple Django app to enable oAuth2 authentication with django-allauth.

Quick start

  1. Install django-allauth pip install django-allauth and following the install guide

  2. Add "ihelaprovider" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        "allauth",
        "allauth.account",
        "allauth.socialaccount",
        "ihelaprovider",
    ]
  3. Include the polls URLconf in your project urls.py like this::

    path("oAuth2/", include("ihelaprovider.urls")),
  4. Run python manage.py migrate to create the polls models.

  5. Start the development server and visit http://127.0.0.1:8000/admin/ to add the iHela provider with the application credentials given (you'll need the Admin app enabled).

Visit iHela and django-allauth.

About

iHela Provider is a simple Django app to enable oAuth2 authentication with django-allauth.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%