RandomSec/Serwer_django/config/asgi.py

17 lines
396 B
Python
Raw Normal View History

2022-01-11 15:48:51 +01:00
"""
ASGI config for Serwer_django 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/4.0/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
2022-01-23 22:32:21 +01:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
2022-01-11 15:48:51 +01:00
application = get_asgi_application()