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.
|
|
3 years ago | |
|---|---|---|
| .github/workflows | 3 years ago | |
| .vscode | 3 years ago | |
| public | 3 years ago | |
| src | 3 years ago | |
| .gitignore | 3 years ago | |
| .npmrc | 3 years ago | |
| Containerfile | 3 years ago | |
| LICENSE | 5 years ago | |
| README.md | 3 years ago | |
| biome.json | 3 years ago | |
| index.html | 3 years ago | |
| package.json | 3 years ago | |
| pnpm-lock.yaml | 3 years ago | |
| postcss.config.cjs | 4 years ago | |
| tailwind.config.cjs | 3 years ago | |
| tsconfig.json | 3 years ago | |
| vercel.json | 3 years ago | |
| vite.config.ts | 3 years ago | |
README.md
Meshtastic Web
Overview
Official Meshtastic web interface, that can be hosted or served from a node
Stats
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