2022-12-28 14:24:48 +00:00
|
|
|
"""
|
2023-05-02 19:57:20 +00:00
|
|
|
WSGI config for main project.
|
2022-12-28 14:24:48 +00:00
|
|
|
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
|
|
|
|
For more information on this file, see
|
2023-05-02 19:57:20 +00:00
|
|
|
https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/
|
2022-12-28 14:24:48 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
|
2023-05-02 19:57:20 +00:00
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'main.settings')
|
2022-12-28 14:24:48 +00:00
|
|
|
|
|
|
|
application = get_wsgi_application()
|