2021-03-23 17:08:00 -04:00
|
|
|
"""
|
|
|
|
ASGI config for member_paperwork project.
|
|
|
|
|
|
|
|
It exposes the ASGI callable as a module-level variable named ``application``.
|
|
|
|
|
|
|
|
For more information on this file, see
|
|
|
|
https://docs.djangoproject.com/en/3.1/howto/deployment/asgi/
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
from django.core.asgi import get_asgi_application
|
|
|
|
|
2022-02-11 13:48:47 -05:00
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "member_paperwork.settings")
|
2021-03-23 17:08:00 -04:00
|
|
|
|
|
|
|
application = get_asgi_application()
|