urls.py
author ymh <ymh.work@gmail.com>
Thu, 27 Feb 2014 23:19:13 +0100
changeset 587 a1aa29e7809f
parent 0 40c8f766c9b8
permissions -rw-r--r--
add a vagrant profile + puppet config for dev box

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