2021-09-06 00:10:14 +07:00
|
|
|
"""
|
|
|
|
WSGI config for config 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/3.2/howto/deployment/wsgi/
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
|
2021-09-21 16:25:22 +07:00
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
|
2021-09-06 00:10:14 +07:00
|
|
|
|
|
|
|
application = get_wsgi_application()
|