From 12637a78f73c5a66dcb2134fc090f46aa6549301 Mon Sep 17 00:00:00 2001 From: Fr4nz D13trich Date: Thu, 2 Oct 2025 14:47:56 +0200 Subject: [PATCH] Delete page "Server-Setup" --- Server-Setup.md | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 Server-Setup.md diff --git a/Server-Setup.md b/Server-Setup.md deleted file mode 100644 index f79e71e..0000000 --- a/Server-Setup.md +++ /dev/null @@ -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. \ No newline at end of file