Merge pull request #40 from PI-Victor/pi-victor/upgrade_django_vers
bump django version
This commit is contained in:
commit
f5dc6e48c6
2 changed files with 9 additions and 7 deletions
|
@ -1,12 +1,14 @@
|
||||||
from django.conf.urls import include, url
|
from django.conf.urls import include, url
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
|
from welcome.views import index, health
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
# Examples:
|
# Examples:
|
||||||
# url(r'^$', 'project.views.home', name='home'),
|
# url(r'^$', 'project.views.home', name='home'),
|
||||||
# url(r'^blog/', include('blog.urls')),
|
# url(r'^blog/', include('blog.urls')),
|
||||||
|
|
||||||
url(r'^$', 'welcome.views.index'),
|
url(r'^$', index),
|
||||||
url(r'^health$', 'welcome.views.health'),
|
url(r'^health$', health),
|
||||||
url(r'^admin/', include(admin.site.urls)),
|
url(r'^admin/', include(admin.site.urls)),
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Django==1.8.1
|
Django==1.9.5
|
||||||
psycopg2==2.6
|
django-debug-toolbar==1.4
|
||||||
gunicorn==19.3.0
|
gunicorn==19.4.5
|
||||||
whitenoise==1.0.6
|
psycopg2==2.6.1
|
||||||
django-debug-toolbar==1.3.0
|
whitenoise==3.0
|
||||||
|
|
Loading…
Reference in a new issue