This commit is contained in:
juanifioren 2015-04-29 18:56:10 -03:00
commit 4302958671
2 changed files with 5 additions and 5 deletions

2
DOC.md
View file

@ -38,7 +38,7 @@ Before getting started there are some important things that you should know:
## Installation ## Installation
If you want to get started fast see our [Example App](https://github.com/juanifioren/django-oidc-provider/tree/master/example_app) folder. If you want to get started fast see our [Example Project](https://github.com/juanifioren/django-oidc-provider/tree/master/example_project) folder.
Install the package using pip. Install the package using pip.

View file

@ -1,6 +1,6 @@
# Example Django App # Example Project
This is just a simple Django app with all the necessary things to work with `django-oidc-provider` package. 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 & Running
@ -9,6 +9,7 @@ Setup project environment with [virtualenv](https://virtualenv.pypa.io) and [pip
```bash ```bash
$ virtualenv project_env $ virtualenv project_env
$ source project_env/bin/activate $ source project_env/bin/activate
$ git clone https://github.com/juanifioren/django-oidc-provider.git $ git clone https://github.com/juanifioren/django-oidc-provider.git
$ cd django-oidc-provider/example_app $ cd django-oidc-provider/example_app
$ pip install -r requirements.txt $ pip install -r requirements.txt
@ -17,7 +18,6 @@ $ pip install -r requirements.txt
Run your provider. Run your provider.
```bash ```bash
$ python manage.py makemigrations
$ python manage.py migrate $ python manage.py migrate
$ python manage.py runserver $ python manage.py runserver
``` ```