uavcast-community edition is an application that provides an easy method for streaming mavlink (telemetry) data and video over a LTE/4G or WiFi network.
Install latest uavcast-community edition on Rasperry PI, Jetson, or any arm/v7 arm64 amd64 device:
curl -s http://install.uavmatrix.com/next/ | sudo bash
https://docs.uavmatrix.com/5.x/
✅ Express nodejs (Typescript)
✅ Typeorm && sqlite3 database
✅ React (Typescript)
✅ Semantic-ui-react
✅ graphql / type-graphql && codegen
➕ Docker
➕ Docker Compose
➕ Visual Studio Code
Upon opening, you should be prompted to open the project in a remote container. This will build a container on top of the base uavcast-community container with all the development dependencies installed. This ensures everyone uses a consistent development environment without the need to install any dependencies on your host machine.
If vscode does not start the remote container automatically, use hotkeys: Ctrl + shift + p and select Remote-Container: Rebuild and Reopen container
After starting the container for the first time, it will install some additional package, give it few minutes to complete.
VSCode will start the docker compose file for you and open a terminal window connected to /app/uavcast
folder.
➖ Run cd backend && npm install
➖ Run cd frontend && npm install
➖ Run npm start
from the project root to start both frontend & backend.
Uavcast-community uses a supervisor container to manage the application update ect. Supervisor is not needed for development.
To run the supervisor, type cd supervisor && npm install && npm start
from the uavcast-community project root.
After closing VSCode, you may still have containers running. To close everything down, just run
docker-compose down -v
to cleanup all containers.
Do not make large sweeping changes. Open a discussion on GitHub for any large or architectural ideas.
Ensure lint passes. npm run lint
This command will ensure basic conformance to styles, applying as many automatic fixes as possible, including Prettier formatting.
Use these commands in the project root (!not in the vscode developer container).
Type ./compile_release.sh
+ arguments to genereate local docker image, or you can publish to your own container registery.
Example local build:
./compile_release.sh --image_name sinamics/uavcast --version 5.x.x --docker_local
run docker image locally:
docker run --restart unless-stopped --name uavcast -d \
-v uavdata:/app/uavcast/data \
-v /var/lib/zerotier-one:/var/lib/zerotier-one \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /dev:/dev \
--privileged=true --net=host [image_name]:[version]
Uavcast-community is provided under the the 3-Clause BSD License.
All license notes are listed in our documentation.
https://docs.uavmatrix.com/5.x/libraries/