-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathurls.py
More file actions
20 lines (17 loc) · 686 Bytes
/
urls.py
File metadata and controls
20 lines (17 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##################################################
# urls.py
# SCAuthExample
#
# Created by Saikat Chakrabarti on April 7, 2010.
#
# See LICENSE file for license information.
##################################################
from django.conf.urls.defaults import *
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
(r'^user/', include('SCAuthExample.user.urls')),
(r'^session/', include('SCAuthExample.session.urls')),
(r'^(?P<path>.*)$', 'django.views.static.serve', {'document_root': 'frontend/'}),
)