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.
 
 
Hunter Thornsberry 288e0da5bc Merge branch 'master' into issue-123-canned-messages 2 years ago
.github Update release.yml 2 years ago
.vscode Update biome, fix and enforce recommended rules 2 years ago
public Compat with latest JS lib 4 years ago
src biome 2 years ago
.gitignore Multiple theme support & fixes 4 years ago
.npmrc Use rome and initial format 3 years ago
Containerfile update containerfile 3 years ago
LICENSE Create LICENSE 5 years ago
README.md protobuf readme 2 years ago
biome.json ignore vercel.json in biome 2 years ago
index.html Quick cleanup 4 years ago
package.json use new js and remove polyfills 2 years ago
pnpm-lock.yaml Merge branch 'master' into issue-123-canned-messages 2 years ago
postcss.config.cjs Update biome, fix and enforce recommended rules 2 years ago
tailwind.config.cjs cleanup & update 3 years ago
tsconfig.json update to namespaced protobufs 3 years ago
vercel.json vercel fix v2 2 years ago
vite.config.ts use new js and remove polyfills 2 years ago

README.md

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