bookwyrm/celerywyrm/settings.py

28 lines
891 B
Python
Raw Normal View History

""" bookwyrm settings and configuration """
2021-09-07 20:51:59 +00:00
# pylint: disable=wildcard-import
# pylint: disable=unused-wildcard-import
from bookwyrm.settings import *
2022-01-05 16:27:39 +00:00
REDIS_BROKER_PASSWORD = requests.utils.quote(env("REDIS_BROKER_PASSWORD", None))
REDIS_BROKER_HOST = env("REDIS_BROKER_HOST", "redis_broker")
REDIS_BROKER_PORT = env("REDIS_BROKER_PORT", 6379)
# pylint: disable=line-too-long
CELERY_BROKER_URL = f"redis://:{REDIS_BROKER_PASSWORD}@{REDIS_BROKER_HOST}:{REDIS_BROKER_PORT}/0"
CELERY_RESULT_BACKEND = f"redis://:{REDIS_BROKER_PASSWORD}@{REDIS_BROKER_HOST}:{REDIS_BROKER_PORT}/0"
2021-09-07 20:51:59 +00:00
2021-09-08 00:11:32 +00:00
CELERY_DEFAULT_QUEUE = "low_priority"
2021-09-07 23:06:54 +00:00
2021-03-08 16:49:10 +00:00
CELERY_ACCEPT_CONTENT = ["json"]
CELERY_TASK_SERIALIZER = "json"
2021-09-07 20:51:59 +00:00
CELERY_RESULT_SERIALIZER = "json"
FLOWER_PORT = env("FLOWER_PORT")
INSTALLED_APPS = INSTALLED_APPS + [
2021-03-08 16:49:10 +00:00
"celerywyrm",
]
2021-03-08 16:49:10 +00:00
ROOT_URLCONF = "celerywyrm.urls"
2021-03-08 16:49:10 +00:00
WSGI_APPLICATION = "celerywyrm.wsgi.application"