blob: 57b84c7a7dbf9564e693feba9f71b0b180029b76 [file] [log] [blame]
#
# Copyright 2015-2016 IBM Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from django.conf import settings
from django.conf.urls import patterns, include, url
from django.views.generic import TemplateView
from whisk_tutorial import views
urlpatterns = patterns('',
url(r'^$', views.homepage, name="home"),
)
if settings.DEBUG is False: #if DEBUG is True it will be served automatically
print("In URLS - Debug False")
urlpatterns += patterns('',
url(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}),
)