Official Meshtastic web interface, that can be hosted or served from a node
The client can be self hosted using the precompiled container images with an OCI compatible runtime such as Docker or Podman. The base image used is UBI9 Nginx 1.22
# With Docker
docker run -d -p 8080:8080 -p 8443:8443 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web
#With Podman
podman run -d -p 8080:8080 -p 8443:8443 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web
Build the project:
pnpm build
GZip the output:
pnpm package
Install the dependencies.
pnpm i
Start the development server:
pnpm dev