Live Location Tracker
This is a live location tracker project, taken up during the May 2018 Python Pune Meetup hackathon.
Please look at the comment titled Live Location and trip tracking through phone app
in the following link:
datameet-pune/datameet-pune.github.io#15
$ git clone [email protected]:screwgoth/live-location-tracker.git
$ cd live-location-tracker
$ mkvirtualenv llt
$ workon llt
(llt)$ pip install -r requirements.txt
You can use any MySQL server. In order to user a Docker container of MySQL DB, use the following command
$ docker run --name llt-db -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=llt-db -p 3306:3306 -d mysql:latest --default-authentication-plugin=mysql_native_password
In any case, please update the DATABASES
section in the settings.py
under the livelocationtracker
folder with appropriate Database name, user, password, host IP and port. The current values are assuming you are using MySQL server using Docker as given above.
(llt)$ python manage.py makemigrations
(llt)$ python manage.py migrate
(llt)$ python manage.py createsuperuser --username=admin [email protected]
(llt)$ python manage.py runserver 0.0.0.0:8000
You can open your browser to following URLs:
- If you want to contribute to the project, first start by creating a Issue or choosing one from the existing issue.
- Fork the repo, create a new branch with your fix and send a Pull Request.
- Alternatively, you can mail me at raseelbhagat [at] gmail [dot] com if you want to get involved.