2021-05-10 17:19:50 -04:00
|
|
|
""" bookwyrm settings and configuration """
|
|
|
|
from bookwyrm.settings import *
|
2020-03-31 19:31:33 -04:00
|
|
|
|
2021-03-08 11:49:10 -05:00
|
|
|
CELERY_BROKER_URL = env("CELERY_BROKER")
|
|
|
|
CELERY_ACCEPT_CONTENT = ["json"]
|
|
|
|
CELERY_TASK_SERIALIZER = "json"
|
|
|
|
CELERY_RESULT_BACKEND = "redis"
|
2020-03-31 19:31:33 -04:00
|
|
|
|
2021-05-10 17:19:50 -04:00
|
|
|
INSTALLED_APPS = INSTALLED_APPS + [
|
2021-03-08 11:49:10 -05:00
|
|
|
"celerywyrm",
|
2020-03-31 19:31:33 -04:00
|
|
|
]
|
|
|
|
|
2021-03-08 11:49:10 -05:00
|
|
|
ROOT_URLCONF = "celerywyrm.urls"
|
2020-03-31 19:31:33 -04:00
|
|
|
|
2021-03-08 11:49:10 -05:00
|
|
|
WSGI_APPLICATION = "celerywyrm.wsgi.application"
|