X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/87e084d47c335cd6f0b3e91d614999f55d148044..HEAD:/src/wolnelektury/celery.py diff --git a/src/wolnelektury/celery.py b/src/wolnelektury/celery.py index 094a7a7c2..ced325b0a 100644 --- a/src/wolnelektury/celery.py +++ b/src/wolnelektury/celery.py @@ -1,19 +1,14 @@ -from __future__ import absolute_import - +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. +# import os -import sys +from celery import Celery +from django.conf import settings -ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) -sys.path = [ - os.path.join(ROOT, 'lib/librarian'), -] + sys.path os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'wolnelektury.settings') -from celery import Celery -from django.conf import settings - app = Celery('wolnelektury') -app.config_from_object('django.conf:settings') +app.config_from_object('django.conf:settings', namespace='CELERY') app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)