blob: 025bc4ee61641705695967d5774ace340537358a [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
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +02009
Dirk Vogt20539e52016-08-26 11:17:35 +020010os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hiccup.settings")
11
12from django.core.wsgi import get_wsgi_application
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +020013
Dirk Vogt20539e52016-08-26 11:17:35 +020014application = get_wsgi_application()