From a2cb2d6285f7038f458d9be76cd0136604e96e8b Mon Sep 17 00:00:00 2001 From: Fr4nz D13trich Date: Thu, 2 Oct 2025 14:47:43 +0200 Subject: [PATCH] Delete page "Server-Setup-Deno" --- Server-Setup-Deno.md | 51 -------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 Server-Setup-Deno.md diff --git a/Server-Setup-Deno.md b/Server-Setup-Deno.md deleted file mode 100644 index 03eeb17..0000000 --- a/Server-Setup-Deno.md +++ /dev/null @@ -1,51 +0,0 @@ -## Web Client Development - -### Overview - -The Meshtastic web interface can be hosted or served from a node. - -The official hosted version can be found at https://client.meshtastic.org. - -The version served from a node can be accessed by first connecting your node to your network and then navigating to http://meshtastic.local (or your_node_ip.local). - -## Development & Building - -### Deno - -``` -curl -fsSL https://deno.land/install.sh | sh -``` - -### Development - -Clone the Meshtastic Web Repo repository - -``` -git clone https://github.com/meshtastic/web.git && cd web -``` - -Install the dependencies. - -``` -deno i -``` - -Start the development server: - -``` -deno task dev -``` - -### Building and Packaging - -Build the project: - -``` -deno task build -``` - -GZip the output: - -``` -deno task package -```