django-oidc-provider/example_project/README.md

24 lines
582 B
Markdown
Raw Normal View History

2015-04-29 17:04:57 +00:00
# Example Project
2015-03-19 20:10:00 +00:00
2015-04-29 17:04:57 +00:00
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.
2015-03-19 20:10:00 +00:00
## Setup & Running
Setup project environment with [virtualenv](https://virtualenv.pypa.io) and [pip](https://pip.pypa.io).
```bash
$ virtualenv project_env
$ source project_env/bin/activate
2015-04-29 17:04:57 +00:00
2015-03-19 20:10:00 +00:00
$ git clone https://github.com/juanifioren/django-oidc-provider.git
$ cd django-oidc-provider/example_app
$ pip install -r requirements.txt
```
Run your provider.
```bash
$ python manage.py migrate
$ python manage.py runserver
2015-04-29 17:04:57 +00:00
```