diff --git a/project/urls.py b/project/urls.py index 75017b9..7165878 100644 --- a/project/urls.py +++ b/project/urls.py @@ -1,12 +1,14 @@ from django.conf.urls import include, url from django.contrib import admin +from welcome.views import index, health + urlpatterns = [ # Examples: # url(r'^$', 'project.views.home', name='home'), # url(r'^blog/', include('blog.urls')), - url(r'^$', 'welcome.views.index'), - url(r'^health$', 'welcome.views.health'), + url(r'^$', index), + url(r'^health$', health), url(r'^admin/', include(admin.site.urls)), ] diff --git a/requirements.txt b/requirements.txt index a7f88f2..75cfe4d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -Django==1.8.1 -psycopg2==2.6 -gunicorn==19.3.0 -whitenoise==1.0.6 -django-debug-toolbar==1.3.0 +Django==1.9.5 +django-debug-toolbar==1.4 +gunicorn==19.4.5 +psycopg2==2.6.1 +whitenoise==3.0