welco/welco/wsgi.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
387 B
Python
Raw Normal View History

2015-07-02 10:46:33 +02:00
"""
WSGI config for welco 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
2021-01-11 20:10:12 +01:00
2015-07-02 10:46:33 +02:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "welco.settings")
from django.core.wsgi import get_wsgi_application
2021-01-11 20:10:12 +01:00
2015-07-02 10:46:33 +02:00
application = get_wsgi_application()