From dcd60d51ed4d2ac57cf09aa94a3613aa872d5d45 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 19 Jun 2025 01:44:42 +0200 Subject: [PATCH] docs: add Rust and Node.js prerequisites to build instructions - Add installation instructions for Rust via rustup.sh - Include rustup target add x86_64-apple-darwin for universal binary support - Note Node.js requirement for web frontend build --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index fc1a7315..1e366bb8 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,17 @@ For technical details, see [ARCHITECTURE.md](docs/ARCHITECTURE.md). ## Building from Source +### Prerequisites + +- **Rust**: Install via [https://rustup.sh/](https://rustup.sh/) + ```bash + # After installing Rust, add the x86_64 target for universal binary support + rustup target add x86_64-apple-darwin + ``` +- **Node.js**: Required for building the web frontend + +### Build Steps + ```bash # Clone the repository git clone https://github.com/amantus-ai/vibetunnel.git