From e329e2575376e3df707bf30533f3c347b96309f1 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Thu, 21 Jan 2021 21:15:42 +0100 Subject: [PATCH] ### 0.0.10 Release * Issue #24 update_data * Issue #26 /admin/database/dump * Issue #28 /admin/database/import * Issue #29 /who/info * Issue #30 /europa/info * Issue #31 /rki/info * Issue #32 /nrw/info * Issue #33 /europe/date_reported * Issue #34 /europe/continent * Issue #35 /europe/country * Issue #36 /europe/data * Issue #37 switch from RabbitMQ to Redis * Issue #38 update Celery from 4 to 5 --- config.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/config.py b/config.py index 999049ab..a06ebfeb 100644 --- a/config.py +++ b/config.py @@ -6,8 +6,6 @@ ITEMS_PER_PAGE = 20 YOUR_NAME = 'covid19python' PASSWORD = 'vfdjv423ndf654&%%' VHOST_NAME = 'covid19python' -#CELERY_BROKER_URL = 'amqp://guest:guest@localhost/' -#CELERY_RESULT_BACKEND = 'amqp://guest:guest@localhost/' CELERY_BROKER_URL = 'redis://localhost:6379/0' CELERY_RESULT_BACKEND = 'redis://localhost:6379/0' SECRET_KEY='vfdjv423ndf654&%%' \ No newline at end of file -- GitLab