urls.py
author Yves-Marie Haussonne <ymh.work+github@gmail.com>
Fri, 09 May 2014 16:49:53 +0200
changeset 650 2a07f8bda874
parent 0 40c8f766c9b8
permissions -rw-r--r--
increase timeout for dev env which is a little bit slower when creating user in bulk

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'^admin/', include(admin.site.urls)),    
    
    (r'', include('cm.urls')),
)

try :
    import urls_local
except ImportError :
    pass