feedvault.se/feedvault/wsgi.py
2024-02-18 22:00:28 +01:00

8 lines
243 B
Python

import os
from django.core.handlers.wsgi import WSGIHandler
from django.core.wsgi import get_wsgi_application
os.environ.setdefault(key="DJANGO_SETTINGS_MODULE", value="feedvault.settings")
application: WSGIHandler = get_wsgi_application()