Metadata-Version: 1.1
Name: ihela-oauth2-provider
Version: 0.2.1
Summary: A simple Django app to enable oAuth2 for iHela with django-allauth.
Home-page: https://github.com/ubuviz/ihela-oauth2-provider
Author: UbuViz
Author-email: info@ubuviz.com
License: MIT License
Description: iHela Provider
        ==============
        
        iHela Provider is a simple Django app to enable oAuth2 authentication with django-allauth.
        
        Quick start
        -----------
        1. Install [django-allauth](https://github.com/pennersr/django-allauth)
            `pip install django-allauth` and following the [install guide](https://django-allauth.readthedocs.io/en/latest/installation.html)
        1. Add "ihelaprovider" to your INSTALLED_APPS setting like this:
        
            ```python
            INSTALLED_APPS = [
                ...
                "allauth",
                "allauth.account",
                "allauth.socialaccount",
                "ihelaprovider",
            ]
            ```
        
        2. Include the polls URLconf in your project urls.py like this::
        
            ```python
            path("oAuth2/", include("ihelaprovider.urls")),
            ```
        
        3. Run `python manage.py migrate` to create the polls models.
        
        4. 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](https://ihela.online) and [django-allauth](https://github.com/pennersr/django-allauth).
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
