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-06-03 09:46:32 -04:00
|
|
|
CELERY_BROKER_URL = CELERY_BROKER
|
2021-03-08 11:49:10 -05:00
|
|
|
CELERY_ACCEPT_CONTENT = ["json"]
|
|
|
|
CELERY_TASK_SERIALIZER = "json"
|
2021-05-24 00:49:12 -04:00
|
|
|
FLOWER_PORT = env("FLOWER_PORT")
|
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"
|