You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AudioWorkstation/README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,16 +55,20 @@ Assuming you're within the cloned repository and have the latest development sna
55
55
above, first build the package:
56
56
57
57
```sh
58
-
swift build --triple wasm32-unknown-none-wasm -c release --product swift-audio
58
+
cd Guest
59
+
./build.sh
59
60
```
60
61
62
+
The script above will build Wasm audio plugins and copy resulting `.wasm` files to the user home directory.
63
+
61
64
Then start the HTTP server:
62
65
63
66
```sh
64
-
python3 -m http.server
67
+
cd ../ServerHost
68
+
swift run Server
65
69
```
66
70
67
-
Open http://localhost:8000 in your browser to see the project running.
71
+
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.
0 commit comments