django_example_ynh/conf/wsgi.py

13 lines
184 B
Python
Raw Normal View History

2020-12-23 19:53:13 +01:00
"""
WSGI config
"""
import os
2020-12-29 11:35:45 +01:00
2020-12-29 11:12:21 +01:00
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
2020-12-23 19:53:13 +01:00
from django.core.wsgi import get_wsgi_application # noqa
2020-12-23 19:53:13 +01:00
application = get_wsgi_application()