File indexing completed on 2026-04-25 08:29:11
0001 """
0002 WSGI config for swf_monitor_project project.
0003
0004 It exposes the WSGI callable as a module-level variable named ``application``.
0005
0006 For more information on this file, see
0007 https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/
0008 """
0009
0010 import os
0011
0012 from django.core.wsgi import get_wsgi_application
0013
0014 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "swf_monitor_project.settings")
0015
0016 application = get_wsgi_application()