bookwyrm/bookwyrm/tasks.py
Mouse Reeve c7883cd615 Updates migrations
To get the app working again I ran resetdb, let it crash in initdb,
then ran the migration, then re-ran initdb
2020-09-21 08:10:37 -07:00

13 lines
295 B
Python

''' background tasks '''
import os
from celery import Celery
from bookwyrm import settings
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'celerywyrm.settings')
app = Celery(
'tasks',
broker=settings.CELERY_BROKER,
)