You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

2.3 KiB

Meshtastic Web

CI CLA assistant Fiscal Contributors Vercel

Overview

Official Meshtastic web interface, that can be hosted or served from a node

Hosted version

Stats

Alt

Self-host

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

Development & Building

Building and Packaging

Build the project:

pnpm build

GZip the output:

pnpm package

Development

Install the dependencies.

pnpm i

Start the development server:

pnpm dev

Updating Protobufs

To update to the latest protobufs go to https://buf.build/meshtastic/protobufs/sdks and select plugin version 1.10.

The version should look something like this: 1.10.0-20240906232734-3da561588c55.1

Where the version is always 1.10.0 followed by a timestamp and a commit hash. Updating to an SDK version higher than 1.10.0 has breaking changes.

Use that version to updated your package.json file.

Ensure to keep the meshtastic/js protobufs in step with web