5 Commits

Author SHA1 Message Date
Robert Einsle
6060e5c2b0 Merge branch 'release/v1.0.4' 2021-10-08 14:42:31 +02:00
Robert Einsle
7d312cf830 set Version to 1.0.4 2021-10-08 14:42:13 +02:00
Robert Einsle
0f578c0611 add billard command to process location object data via cron job 2021-10-08 14:40:24 +02:00
Robert Einsle
11d7300d75 set version to 1.0.4-dev 2021-09-28 10:46:51 +02:00
Robert Einsle
8c3b49636a Merge tag 'v1.0.3' into develop
Tagging version v1.0.3 v1.0.3
2021-09-28 10:46:37 +02:00
4 changed files with 10 additions and 1 deletions

View File

View File

View File

@@ -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

View File

@@ -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'
INTERNAL_IPS = ['127.0.0.1']