Files
agentic-soc-platform/backend/asp/wsgi.py
funnywolf b6b4cbf017 0.4.0 I always have a choice
You shape nothing until you hold everything.
2026-06-27 19:08:48 +08:00

20 lines
488 B
Python

"""
WSGI config for asp 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.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
from apps.common.logging import configure_process_file_logging
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'asp.settings')
application = get_wsgi_application()
configure_process_file_logging("django")