mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
20 lines
488 B
Python
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")
|