1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00
pyinventory_ynh/conf/wsgi.py

13 lines
184 B
Python
Raw Normal View History

2020-12-07 16:20:37 +01:00
"""
WSGI config
"""
2020-12-08 09:31:10 +01:00
import os
2020-12-29 13:58:40 +01:00
2020-12-29 12:52:08 +01:00
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
2020-12-07 16:20:37 +01:00
2020-12-29 13:58:40 +01:00
from django.core.wsgi import get_wsgi_application # noqa
2020-12-29 12:52:08 +01:00
application = get_wsgi_application()