mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-06 00:49:38 +00:00
d1737b44bd
TODO - [ ] Delay task (Celery?) - [ ] Store the image in a subfolder unique to the edition, to make cleaning up the image easy - [ ] Clean up the image before replacing it - [ ] Ensure that the image will be cleaned when the edition is deleted ?? - [ ] Use instance custom colors? - [ ] Use book cover color base?
29 lines
1.2 KiB
Python
29 lines
1.2 KiB
Python
""" configures celery for task management """
|
|
from __future__ import absolute_import, unicode_literals
|
|
import os
|
|
|
|
from celery import Celery
|
|
from . import settings
|
|
|
|
|
|
# set the default Django settings module for the 'celery' program.
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "celerywyrm.settings")
|
|
|
|
app = Celery("celerywyrm")
|
|
|
|
# Using a string here means the worker doesn't have to serialize
|
|
# the configuration object to child processes.
|
|
# - namespace='CELERY' means all celery-related configuration keys
|
|
# should have a `CELERY_` prefix.
|
|
app.config_from_object("django.conf:settings", namespace="CELERY")
|
|
|
|
# Load task modules from all registered Django app configs.
|
|
app.autodiscover_tasks()
|
|
app.autodiscover_tasks(["bookwyrm"], related_name="activitypub.base_activity")
|
|
app.autodiscover_tasks(["bookwyrm"], related_name="broadcast")
|
|
app.autodiscover_tasks(["bookwyrm"], related_name="connectors.abstract_connector")
|
|
app.autodiscover_tasks(["bookwyrm"], related_name="emailing")
|
|
app.autodiscover_tasks(["bookwyrm"], related_name="goodreads_import")
|
|
app.autodiscover_tasks(["bookwyrm"], related_name="preview_images")
|
|
app.autodiscover_tasks(["bookwyrm"], related_name="models.user")
|
|
app.autodiscover_tasks(["bookwyrm"], related_name="views.inbox")
|