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

15
app/wsgi.py Normal file
View file

@ -0,0 +1,15 @@
"""
WSGI config for min.ie project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/
"""
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "app.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()