1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-07 01:43:44 +02:00
acronomy/acronomy/asgi.py
2020-06-01 11:03:21 +02:00

16 lines
394 B
Python

"""
ASGI config for astroacro 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.0/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'acronomy.settings')
application = get_asgi_application()