Skip to content

Commit

Permalink
Added a bit of README
Browse files Browse the repository at this point in the history
  • Loading branch information
pennersr committed Oct 13, 2010
1 parent 1b7b98b commit 1db8e26
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.pyc
*~
7 changes: 4 additions & 3 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
django-allauth was started by Raymond Penners in October 2010,
inspired by and partly based on existing projects such as Pinax
(account app), Django-Socialauth, django-socialregistration.
django-allauth was started by Raymond Penners
(<raymond.penners@intenct.nl> or @pennersr) in October 2010, inspired
by and partly based on existing projects such as Pinax (account app),
Django-Socialauth, django-socialregistration.
45 changes: 44 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,45 @@
TBD
==============
Django AllAuth
==============

Integrated set of Django applications addressing authentication,
registration, account management as well as 3rd party (social) account
authentication.

Configuration
=============

Django
------

settings.py:

TEMPLATE_CONTEXT_PROCESSORS = (
...
"allauth.account.context_processors.account"
)

AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend',
'allauth.socialaccount.auth.SocialAccountBackend')

INSTALLED_APPS = (
'allauth',
'allauth.account',
'allauth.socialaccount',
'allauth.twitter',
'allauth.openid',
'allauth.facebook',

urls.py:

urlpatterns = patterns('',
...
(r'^accounts/', include('allauth.urls')))


Facebook & Twitter
------------------

The required keys and secrets for interacting with Facebook and
Twitter are to be configured in the database via the Django admin
using the TwitterApp and FacebookApp models.

0 comments on commit 1db8e26

Please sign in to comment.