1
0
Fork 1
mirror of https://github.com/bookwyrm-social/bookwyrm.git synced 2024-12-14 20:26:32 +00:00
bookwyrm/celerywyrm/wsgi.py

17 lines
397 B
Python
Raw Normal View History

"""
2020-09-17 21:13:44 +00:00
WSGI config for celerywyrm 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.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
2020-09-17 21:13:44 +00:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'celerywyrm.settings')
application = get_wsgi_application()