django-for-runners_ynh/conf/wsgi.py

13 lines
184 B
Python
Raw Normal View History

2020-12-12 19:37:20 +01:00
"""
WSGI config
"""
import os
2021-01-17 11:47:00 +01:00
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from django.core.wsgi import get_wsgi_application # noqa
application = get_wsgi_application()