mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
12 lines
184 B
Python
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()
|