Update README.

This commit is contained in:
Juan Ignacio Fiorentino 2015-02-27 14:21:45 -03:00
parent 9ed8df3f96
commit 4628e6f714

6
doc.md
View file

@ -26,7 +26,7 @@ Install the package using pip.
```bash
pip install django-oidc-provider
# Or latest code from repo.
pip install git+https://github.com/juanifioren/django-oidc-provider.git#egg=openid_provider
pip install git+https://github.com/juanifioren/django-oidc-provider.git#egg=oidc_provider
```
Add it to your apps.
@ -39,7 +39,7 @@ INSTALLED_APPS = (
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'openid_provider',
'oidc_provider',
# ...
)
```
@ -49,7 +49,7 @@ Add the provider urls.
```python
urlpatterns = patterns('',
# ...
url(r'^openid/', include('openid_provider.urls', namespace='openid_provider')),
url(r'^openid/', include('oidc_provider.urls', namespace='oidc_provider')),
# ...
)
```