This system is responsible for interfacing between the frontend systems and the drone management software provided by manufacturers.
It takes areas of interest and resolves them into search patterns to photograph for the backend drone software. It also allows the frontend to get information about the drones' statuses.
python3 -m venv venv
. venv/bin/activate # linux
./venv/Scripts/activate # windows
pip install -r requirements.txt
uvicorn app.main:app --reload
docker build -t drone_manager_image .
docker run -d --name dronemanager -p 8080:8080 drone_manager_image
You can set the environment variable DM_DRONE_VISION_RADIUS
to configure the vision radius of the drones.
You can view the endpoints and accompanying API doc by running the service, then going to http://hostname:port/docs
.
You can run the tests with:
. venv/bin/activate && python3 -m unittest discover -s tests # linux
./venv/Scripts/activate && python3 -m unittest discover -s tests # windows