django-oidc-provider/example_project
2015-07-17 11:32:14 -03:00
..
provider_app Refactoring tests. 2015-07-14 13:27:46 -03:00
.gitignore Add .pem files to gitignore in example project. 2015-07-15 14:38:49 -03:00
manage.py Update example project. 2015-04-28 14:55:35 -03:00
README.md Edit example project README. 2015-07-01 18:18:57 -03:00
requirements.txt Update example project requirements. 2015-07-06 18:20:08 -03:00

Example Project

Run your own OIDC provider in a second. This is a Django app with all the necessary things to work with django-oidc-provider package.

Setup & Running

Setup project environment with virtualenv and pip.

# For Python 2.7.
$ virtualenv project_env
# Or Python 3.
$ virtualenv -p /usr/bin/python3.4 project_env

$ source project_env/bin/activate

$ git clone https://github.com/juanifioren/django-oidc-provider.git
$ cd django-oidc-provider/example_project
$ pip install -r requirements.txt

Run your provider.

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

Open your browser and go to http://localhost:8000. Voilà!

Install package for development

After you run pip install -r requirements.txt.

# Remove pypi package.
$ pip uninstall django-oidc-provider

# Go back and add the package again.
$ cd ..
$ pip install -e .