Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EnvTunnel

> A free, local-first desktop tool that scans for active dev servers and generates instant QR codes - so you can open your localhost on any device in your network with one scan.
> A free, local-first desktop app for **Windows, macOS, and Linux**. It scans for active dev servers and generates instant QR codes - so you can open your localhost on any device in your network with one scan.

<img src="demo.gif" alt="EnvTunnel Demo" width="480">

Expand Down
9 changes: 5 additions & 4 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EnvTunnel | Local Dev Server Scanner & QR Generator</title>
<meta name="description" content="EnvTunnel scans your localhost ports and generates instant QR codes to open them on any device in your network. 100% offline." />
<meta name="description" content="EnvTunnel is a free desktop app for Windows, macOS, and Linux. It scans localhost ports and generates QR codes so you can open them on any device in your network. 100% offline." />
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
Expand Down Expand Up @@ -32,14 +32,15 @@
<!-- HERO -->
<section class="hero">
<div class="container">
<div class="hero-badge">[ LOCAL-FIRST / OFFLINE ]</div>
<div class="hero-badge">[ WINDOWS / MACOS / LINUX ]</div>
<h1 class="hero-title">
STOP TYPING<br />
<span class="hero-accent">192.168.X.X</span><br />
ON YOUR PHONE
</h1>
<p class="hero-desc">
EnvTunnel sits in your system tray, scans 16+ dev ports every 3 seconds,
EnvTunnel is a desktop app for Windows, macOS, and Linux.
It sits in your system tray, scans 16+ dev ports every 3 seconds,
and generates a big QR code the moment it detects an active server.
Scan it. Open it. Done.
</p>
Expand All @@ -50,7 +51,7 @@ <h1 class="hero-title">
<div class="hero-meta">
<span>v1.1.0</span>
<span class="sep">|</span>
<span>TAURI + REACT + RUST</span>
<span>WINDOWS · MACOS · LINUX</span>
<span class="sep">|</span>
<span>OPEN SOURCE</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "envtunnel",
"private": true,
"description": "Local-first desktop app for Windows, macOS, and Linux. Scan dev ports, get a QR code, open localhost on your phone.",
"version": "1.1.0",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "envtunnel"
version = "1.1.0"
description = "EnvTunnel - Local Development Port Scanner with QR Codes"
description = "EnvTunnel - local dev port scanner with QR codes for Windows, macOS, and Linux"
authors = ["envtunnel"]
license = "MIT"
repository = "https://github.com/hsr88/envtunnel"
Expand Down
Loading