Merge branch 'release/v1.0.4'
This commit is contained in:
commit
6060e5c2b0
0
billard/management/__init__.py
Normal file
0
billard/management/__init__.py
Normal file
0
billard/management/commands/__init__.py
Normal file
0
billard/management/commands/__init__.py
Normal file
9
billard/management/commands/process_location_data.py
Normal file
9
billard/management/commands/process_location_data.py
Normal 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
|
@ -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']
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user