Delete page "Server-Setup"

Fr4nz D13trich 2025-10-02 14:47:56 +02:00
parent a2cb2d6285
commit 12637a78f7

@ -1,41 +0,0 @@
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/web.git
cd 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.