This is an example app using socialauth as authentication backend
We use modified django comments app to allow users to login via socialauth and post comments

To use this app in your project:

1. Copy example and example_comments dirs to your project dir
2. Add     
     'example',
     'example_comments',
   to your INSTALLED_APPS
3. Add 
    (r'^comments/post/', 'example_comments.views.post_comment'),
    (r'comments/', include('django.contrib.comments.urls')),
   to your urlpatterns
4. Add
     COMMENTS_APP = 'example_comments'
   to your settings
