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.
 
 
Dan Ditomaso c4383f4bd2
Merge pull request #423 from danditomaso/issue-407-text-style-messages
1 year ago
.github This works now 1 year ago
.vscode Update biome, fix and enforce recommended rules 2 years ago
public Compat with latest JS lib 3 years ago
src Merge pull request #423 from danditomaso/issue-407-text-style-messages 1 year ago
.dockerignore Update Containerfile to use plain Nginx 2 years ago
.gitignore Multiple theme support & fixes 3 years ago
.npmrc Use rome and initial format 3 years ago
Containerfile Merge branch 'meshtastic:master' into master 1 year ago
LICENSE Create LICENSE 5 years ago
README.md updated container port 1 year ago
biome.json ignore vercel.json in biome 2 years ago
index.html Quick cleanup 3 years ago
package.json fix: updated required package manager to use latest vrsion 1 year ago
pnpm-lock.yaml chore: update packages to latest version. feat: replace hashicon lib with vanilla component 1 year ago
postcss.config.cjs Update biome, fix and enforce recommended rules 2 years ago
rsbuild.config.ts pnpm check:fix 1 year ago
tailwind.config.cjs cleanup & update 2 years ago
tsconfig.json pnpm check:fix 1 year 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 Nginx 1.27

# With Docker
docker run -d -p 8080:8080 --restart always --name Meshtastic-Web ghcr.io/meshtastic/web

#With Podman
podman run -d -p 8080:8080 --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