Move to redis and fix a bunch of things

This commit is contained in:
Mouse Reeve
2020-03-31 16:31:33 -07:00
parent ca26a712c3
commit bb04a40044
14 changed files with 286 additions and 50 deletions

16
fr_celery/wsgi.py Normal file
View File

@ -0,0 +1,16 @@
"""
WSGI config for fr_celery 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', 'fr_celery.settings')
application = get_wsgi_application()