bookwyrm-mastodon/celerywyrm/asgi.py

17 lines
397 B
Python
Raw Normal View History

"""
2020-09-17 17:13:44 -04:00
ASGI config for celerywyrm 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
2021-03-08 11:49:10 -05:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "celerywyrm.settings")
application = get_asgi_application()