django-for-runners_ynh/conf/wsgi.py
2021-01-17 11:47:00 +01:00

12 lines
184 B
Python

"""
WSGI config
"""
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from django.core.wsgi import get_wsgi_application # noqa
application = get_wsgi_application()