Update README.md

This commit is contained in:
Fr4nz D13trich 2025-10-02 17:39:52 +02:00
parent 6b15ddce78
commit 94d80e0ea5

View file

@ -4,37 +4,4 @@ LOcal MEshtastic Server
---
### Server Setup
To set up a local Meshtastic client server without Docker, you can host the Meshtastic web client application separately on your network using the official web client repository. The web client can be hosted locally by cloning the repository and running it directly on your machine.
First, clone the Meshtastic web client repository from GitHub:
git clone https://github.com/meshtastic/meshtastic-web.git
cd meshtastic-web
Install the required dependencies using PNPM:
curl -fsSL https://get.pnpm.io/install.sh | sh -
export PNPM_HOME="$HOME/.local/share/pnpm"
export PATH="$PNPM_HOME:$PATH"
pnpm i
Copy the example environment file and configure it:
cp ./.env.example ./.env
Edit the .env file to define the device IP address (e.g., VITE_PUBLIC_DEVICE_IP=192.168.1.100) and optionally point to locally signed SSL certificates if needed.
Run the web application:
pnpm run dev
This will start the web server locally, allowing you to access the Meshtastic web client through your browser at http://localhost:8080 or the specified IP address. This setup enables offline operation and does not require Docker.
Alternatively, you can use the Meshtastic Network Management Client, a desktop application built with Rust and TypeScript, which supports offline deployment and administration of mesh networks.
To run it locally, ensure you have Rust, Node.js, and PNPM installed, then clone the repository, initialize submodules, and run:
pnpm run rust:dev
This will start the desktop client with full offline functionality, including serial communication and network management.
### TBA