From 6b109e71ced4bb5e9ebd6f41a18db0ca16ad4ad2 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Tue, 15 Jul 2025 19:23:16 +0100 Subject: [PATCH] Update `AudioWorkstation/README.md` Update instructions for the current state of the project. --- AudioWorkstation/README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/AudioWorkstation/README.md b/AudioWorkstation/README.md index 57fd125..919308b 100644 --- a/AudioWorkstation/README.md +++ b/AudioWorkstation/README.md @@ -55,16 +55,20 @@ Assuming you're within the cloned repository and have the latest development sna above, first build the package: ```sh -swift build --triple wasm32-unknown-none-wasm -c release --product swift-audio +cd Guest +./build.sh ``` +The script above will build Wasm audio plugins and copy resulting `.wasm` files to the user home directory. + Then start the HTTP server: ```sh -python3 -m http.server +cd ../ServerHost +swift run Server ``` -Open http://localhost:8000 in your browser to see the project running. +Open http://localhost:8080 in your browser to see the web page, where you can load audio plugins built with the `build.sh` script in the previous step. ## License