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

8 lines
187 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
os.environ['DJANGO_SETTINGS_MODULE'] = 'ynh_pyinventory_settings'
2020-12-07 16:20:37 +01:00
from django.core.wsgi import get_wsgi_application
2020-12-08 09:31:10 +01:00
application = get_wsgi_application()