Setup development allowed hosts to be a wildcard, move wsgi and delete bootstrap

This commit is contained in:
Isaac Bythewood
2016-11-28 15:22:04 -05:00
parent 9111ef1ef4
commit d2b4cbc8c6
3 changed files with 1 additions and 165 deletions

8
pinry/wsgi.py Normal file
View File

@@ -0,0 +1,8 @@
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pinry.settings.production")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()