github authentication

note: don't deploy this on the server without setting the necessary
config vars on heroku first, thanks.
This commit is contained in:
Jonas Obrist 2012-08-18 02:58:02 +02:00
parent e35acb0cdf
commit b2d77336d3
3 changed files with 23 additions and 0 deletions

View file

@ -9,4 +9,5 @@ admin.autodiscover()
urlpatterns = patterns('',
url(r'^%s(?P<path>.*)$' % re.escape(settings.STATIC_URL.lstrip('/')), 'django.contrib.staticfiles.views.serve', {'insecure': True}),
url(r'^admin/', include(admin.site.urls)),
url(r'', include('social_auth.urls')),
)