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

14 lines
207 B
Python
Raw Permalink Normal View History

2024-01-18 14:19:07 +01:00
#!/usr/bin/env python3
2023-05-26 19:09:08 +02:00
"""
WSGI config
"""
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from django.core.wsgi import get_wsgi_application # noqa
application = get_wsgi_application()