wcs/wcs/wsgi.py

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

10 lines
200 B
Python
Raw Permalink Normal View History

"""
WSGI config for wcs project.
"""
import os
2021-02-04 10:37:40 +01:00
from django.core.wsgi import get_wsgi_application
2021-02-04 10:37:40 +01:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'wcs.settings')
application = get_wsgi_application()