django-oidc-provider/example_project
2015-04-28 14:55:35 -03:00
..
provider_app Update example project. 2015-04-28 14:55:35 -03:00
.gitignore Update example project. 2015-04-28 14:55:35 -03:00
manage.py Update example project. 2015-04-28 14:55:35 -03:00
README.md Update example project. 2015-04-28 14:55:35 -03:00
requirements.txt Update example project. 2015-04-28 14:55:35 -03:00

Example Django App

This is just a simple Django app with all the necessary things to work with django-oidc-provider package.

Setup & Running

Setup project environment with virtualenv and pip.

$ virtualenv project_env
$ source project_env/bin/activate
$ git clone https://github.com/juanifioren/django-oidc-provider.git
$ cd django-oidc-provider/example_app
$ pip install -r requirements.txt

Run your provider.

$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver