linkding/siteroot/wsgi.py

17 lines
393 B
Python
Raw Normal View History

2019-06-27 06:09:51 +00:00
"""
WSGI config for siteroot project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
2024-01-27 10:29:16 +00:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "siteroot.settings")
2019-06-27 06:09:51 +00:00
application = get_wsgi_application()