X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/5fc3b1a4a446715d859440b474ae206ff672b4cd..refs/heads/shop:/prawokultury/settings.d/50-contrib.py diff --git a/prawokultury/settings.d/50-contrib.py b/prawokultury/settings.d/50-contrib.py index 4423184..4625e79 100644 --- a/prawokultury/settings.d/50-contrib.py +++ b/prawokultury/settings.d/50-contrib.py @@ -19,3 +19,21 @@ CAS_VERSION = '1' HONEYPOT_FIELD_NAME='miut' TAGGIT_AUTOSUGGEST_MODEL = ('questions', 'Tag') + +GETPAID_BACKENDS = ( + 'getpaid.backends.payu', +) + + +import djcelery +djcelery.setup_loader() + +BROKER_BACKEND = "djkombu.transport.DatabaseTransport" +BROKER_HOST = "localhost" +BROKER_PORT = 5672 +BROKER_USER = "guest" +BROKER_PASSWORD = "guest" +BROKER_VHOST = "/" + +CELERY_EAGER_PROPAGATES_EXCEPTIONS = True +CELERY_SEND_TASK_ERROR_EMAILS = True