django-oidc-provider/example_project/README.md

44 lines
1.1 KiB
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
2015-07-01 21:18:57 +00:00
# For Python 2.7.
2015-03-19 20:10:00 +00:00
$ virtualenv project_env
2015-07-01 21:18:57 +00:00
# Or Python 3.
$ virtualenv -p /usr/bin/python3.4 project_env
2015-03-19 20:10:00 +00:00
$ 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
2015-04-30 15:45:04 +00:00
$ cd django-oidc-provider/example_project
2015-03-19 20:10:00 +00:00
$ pip install -r requirements.txt
```
Run your provider.
```bash
$ python manage.py migrate
2015-07-17 14:37:05 +00:00
$ python manage.py creatersakey
2015-03-19 20:10:00 +00:00
$ python manage.py runserver
2015-04-29 17:04:57 +00:00
```
2015-05-07 23:40:36 +00:00
Open your browser and go to `http://localhost:8000`. Voilà!
[<img title="django-oidc-provider" src="http://i.imgur.com/h4gv4s1.gif" width="100%" />](https://github.com/juanifioren/meteor-coffee-boilerplate)
2015-07-01 21:18:57 +00:00
## Install package for development
After you run `pip install -r requirements.txt`.
```bash
# Remove pypi package.
$ pip uninstall django-oidc-provider
# Go back and add the package again.
$ cd ..
$ pip install -e .
```