blob: a193324b97b918fd9ef0656cd7579f03d401db2c [file] [log] [blame]
Mitja Nikolaus6a679132018-08-30 14:35:29 +02001"""WSGI config for Hiccup server project.
2
Dirk Vogt20539e52016-08-26 11:17:35 +02003It 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 +020010from django.core.wsgi import get_wsgi_application
Mitja Nikolauscb50f2c2018-08-24 13:54:48 +020011
Mitja Nikolausbcaf5022018-08-30 16:40:38 +020012os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hiccup.settings")
13
Dirk Vogt20539e52016-08-26 11:17:35 +020014application = get_wsgi_application()