Use Docker, upgrade deps

This commit is contained in:
Jonathan Cremin 2018-08-07 16:55:22 +01:00
parent 16f8eb0470
commit 90f2fe1ced
18 changed files with 231 additions and 79 deletions

7
app/urls.py Normal file
View file

@ -0,0 +1,7 @@
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.home, name='home'),
url(r'(.*)', views.catchall, name='short'),
]