Renames fr_celery dir to celerywyrm

This commit is contained in:
Mouse Reeve
2020-09-17 14:13:44 -07:00
parent f77c156733
commit d1f1260640
8 changed files with 23 additions and 23 deletions

16
celerywyrm/wsgi.py Normal file
View File

@ -0,0 +1,16 @@
"""
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
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'celerywyrm.settings')
application = get_wsgi_application()