blob: 7f023688b90243d7e18610a9bdfc081500c19164 [file] [log] [blame]
Dirk Vogt20539e52016-08-26 11:17:35 +02001"""
2WSGI config for myproject project.
3It exposes the WSGI callable as a module-level variable named ``application``.
4For more information on this file, see
5https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/
6"""
7
8import os
9os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hiccup.settings")
10
11from django.core.wsgi import get_wsgi_application
12application = get_wsgi_application()