From 3cf5c69508d9613940163106e95664ff7475b07d Mon Sep 17 00:00:00 2001 From: Piotr Date: Mon, 16 Jun 2025 21:40:19 +0200 Subject: [PATCH 1/3] fix(readme): wrong directories for building rust server --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d89e251c..bca0b2e7 100644 --- a/README.md +++ b/README.md @@ -184,9 +184,9 @@ Key files: 2. Build the Rust server: ```bash - cd rust/tty-fwd + cd tty-fwd cargo build --release - cd ../.. + cd .. ``` 3. Build the web frontend: @@ -304,4 +304,4 @@ VibeTunnel is open source software licensed under the MIT License. See the LICEN --- -*VibeTunnel - Bridging terminals to the web, one session at a time.* \ No newline at end of file +*VibeTunnel - Bridging terminals to the web, one session at a time.* From 9b3a153b752836733e1db6644a250fa35e8fadc7 Mon Sep 17 00:00:00 2001 From: Piotr Date: Mon, 16 Jun 2025 21:45:04 +0200 Subject: [PATCH 2/3] Update README.md Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bca0b2e7..940f810a 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,7 @@ Key files: 2. Build the Rust server: ```bash - cd tty-fwd +├── tty-fwd/ # Rust TTY forwarding server cargo build --release cd .. ``` From bf53b76539cc36053a4c8e733e0df1055aa8a7e5 Mon Sep 17 00:00:00 2001 From: Piotr Date: Mon, 16 Jun 2025 21:46:33 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 940f810a..0c6794db 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ VibeTunnel offers two server implementations that can be switched at runtime: - Spawns and manages terminal processes - Records sessions in asciinema format - WebSocket streaming for real-time terminal I/O -- Source: `rust/tty-fwd/` directory +- Source: `tty-fwd/` directory Both servers expose similar APIs: - `POST /sessions`: Create new terminal session @@ -184,7 +184,7 @@ Key files: 2. Build the Rust server: ```bash -├── tty-fwd/ # Rust TTY forwarding server + cd tty-fwd cargo build --release cd .. ``` @@ -259,7 +259,7 @@ vibetunnel/ │ ├── Models/ # Data models │ ├── Views/ # SwiftUI views │ └── Resources/ # Assets and bundled files -├── rust/tty-fwd/ # Rust TTY forwarding server +├── tty-fwd/ # Rust TTY forwarding server ├── web/ # TypeScript/JavaScript frontend ├── scripts/ # Build and utility scripts └── Tests/ # Unit and integration tests @@ -278,7 +278,7 @@ vibetunnel/ swift test # Run Rust tests -cd rust/tty-fwd && cargo test +cd tty-fwd && cargo test # Run frontend tests cd web && npm test