A prototype backend for a drone or really any other gps enabled device.
- Run
docker build -t drone_tracker .
- Run
docker run --name drone_tracker_simulation -p 8000:8000 -p 8001:8001 drone_tracker
- In your browser, navigate to localhost:8000. If all went well, you should see a table showing updates received from the drone simulator. The simulation will run for 5 minutes.
- If you wish to stop the simulation run
docker container stop drone_tracker_simulation