From 11d7300d754b2e8135e6e744a55a25bc0678d7b8 Mon Sep 17 00:00:00 2001 From: Robert Einsle Date: Tue, 28 Sep 2021 10:46:51 +0200 Subject: [PATCH 1/3] set version to 1.0.4-dev --- caromserver/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caromserver/settings.py b/caromserver/settings.py index a20a513..b1765c3 100644 --- a/caromserver/settings.py +++ b/caromserver/settings.py @@ -163,7 +163,7 @@ EMAIL_PORT = 25 URL_LOCATION_PROCESSOR = 'http://127.0.0.1:8000/billard/process_locationdata' PRODUCT_INFO = 'CAROM' -PRODUCT_VERSION = 'v 1.0.3' +PRODUCT_VERSION = 'v 1.0.4-dev' INTERNAL_IPS = ['127.0.0.1'] From 0f578c0611ea8647c41bd3c3870a5b59f56eaad5 Mon Sep 17 00:00:00 2001 From: Robert Einsle Date: Fri, 8 Oct 2021 14:40:24 +0200 Subject: [PATCH 2/3] add billard command to process location object data via cron job --- billard/management/__init__.py | 0 billard/management/commands/__init__.py | 0 billard/management/commands/process_location_data.py | 9 +++++++++ 3 files changed, 9 insertions(+) create mode 100644 billard/management/__init__.py create mode 100644 billard/management/commands/__init__.py create mode 100644 billard/management/commands/process_location_data.py diff --git a/billard/management/__init__.py b/billard/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/billard/management/commands/__init__.py b/billard/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/billard/management/commands/process_location_data.py b/billard/management/commands/process_location_data.py new file mode 100644 index 0000000..48567c2 --- /dev/null +++ b/billard/management/commands/process_location_data.py @@ -0,0 +1,9 @@ +from django.core.management.base import BaseCommand, CommandError +from billard.tasks import process_location_data + + +class Command(BaseCommand): + help = 'Process location data objects' + + def handle(self, *args, **options): + process_location_data From 7d312cf8307a1b0a34439695869c283e50bf5077 Mon Sep 17 00:00:00 2001 From: Robert Einsle Date: Fri, 8 Oct 2021 14:42:13 +0200 Subject: [PATCH 3/3] set Version to 1.0.4 --- caromserver/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caromserver/settings.py b/caromserver/settings.py index b1765c3..df8540d 100644 --- a/caromserver/settings.py +++ b/caromserver/settings.py @@ -163,7 +163,7 @@ EMAIL_PORT = 25 URL_LOCATION_PROCESSOR = 'http://127.0.0.1:8000/billard/process_locationdata' PRODUCT_INFO = 'CAROM' -PRODUCT_VERSION = 'v 1.0.4-dev' +PRODUCT_VERSION = 'v 1.0.4' INTERNAL_IPS = ['127.0.0.1']