Files
hentai_manga_site/DJ_Hentai_manga/wsgi.py
2025-11-03 06:55:44 +03:00

19 lines
495 B
Python

"""
WSGI config for DJ_Hentai_manga 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/5.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
from django.contrib.staticfiles.handlers import StaticFilesHandler
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DJ_Hentai_manga.settings')
application = StaticFilesHandler(get_wsgi_application())