mirror of
https://github.com/YunoHost-Apps/django-for-runners_ynh.git
synced 2024-09-03 18:26:16 +02:00
8 lines
187 B
Python
8 lines
187 B
Python
|
"""
|
||
|
WSGI config
|
||
|
"""
|
||
|
import os
|
||
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'ynh_for_runners_settings'
|
||
|
|
||
|
from django.core.wsgi import get_wsgi_application
|
||
|
application = get_wsgi_application()
|