1
0
Fork 1
mirror of https://github.com/bookwyrm-social/bookwyrm.git synced 2025-03-23 11:52:43 +00:00
bookwyrm/celerywyrm/settings.py

15 lines
350 B
Python

""" bookwyrm settings and configuration """
from bookwyrm.settings import *
CELERY_BROKER_URL = CELERY_BROKER
CELERY_ACCEPT_CONTENT = ["json"]
CELERY_TASK_SERIALIZER = "json"
FLOWER_PORT = env("FLOWER_PORT")
INSTALLED_APPS = INSTALLED_APPS + [
"celerywyrm",
]
ROOT_URLCONF = "celerywyrm.urls"
WSGI_APPLICATION = "celerywyrm.wsgi.application"