mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-06 00:49:38 +00:00
b4ae639dab
It was redundant and super bug-prone!
15 lines
356 B
Python
15 lines
356 B
Python
""" bookwyrm settings and configuration """
|
|
from bookwyrm.settings import *
|
|
|
|
CELERY_BROKER_URL = env("CELERY_BROKER")
|
|
CELERY_ACCEPT_CONTENT = ["json"]
|
|
CELERY_TASK_SERIALIZER = "json"
|
|
CELERY_RESULT_BACKEND = "redis"
|
|
|
|
INSTALLED_APPS = INSTALLED_APPS + [
|
|
"celerywyrm",
|
|
]
|
|
|
|
ROOT_URLCONF = "celerywyrm.urls"
|
|
|
|
WSGI_APPLICATION = "celerywyrm.wsgi.application"
|