cheesy/moku/config/wsgi.py
2025-11-23 10:57:34 +00:00

11 lines
291 B
Python
Executable file

import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "moku.config.settings")
application = get_wsgi_application()
"""
WSGI application for moku.blog.
More information: https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/
"""