X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/073bc5dd763d0c181198af92fd5a2d8201d74679..b348f490c98762b4dfc343b5c2bf5823f821286a:/wolnelektury/settings.py diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index 48ba8f894..45dfe3709 100644 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@ -128,6 +128,9 @@ INSTALLED_APPS = [ 'rosetta', 'south', 'sorl.thumbnail', + 'djcelery', + 'djkombu', + # 'django_nose', # included 'compress', @@ -144,6 +147,7 @@ INSTALLED_APPS = [ 'newtagging', 'opds', 'pdcounter', + 'reporting', 'sponsors', 'stats', 'suggest', @@ -224,10 +228,24 @@ MAX_TAG_LIST = 6 NO_BUILD_EPUB = False NO_BUILD_TXT = False NO_BUILD_PDF = False +NO_BUILD_MOBI = False +ALL_EPUB_ZIP = 'wolnelektury_pl_epub' +ALL_PDF_ZIP = 'wolnelektury_pl_pdf' +ALL_MOBI_ZIP = 'wolnelektury_pl_mobi' PAGINATION_INVALID_PAGE_RAISES_404 = True +import djcelery +djcelery.setup_loader() + +BROKER_BACKEND = "djkombu.transport.DatabaseTransport" +BROKER_HOST = "localhost" +BROKER_PORT = 5672 +BROKER_USER = "guest" +BROKER_PASSWORD = "guest" +BROKER_VHOST = "/" + # Load localsettings, if they exist try: