From 27589446b2cad92bf0bcd159c5151721c1c3b656 Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Tue, 17 Feb 2026 09:45:56 -0800 Subject: [PATCH] add readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4186b2e --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +How to build the wasm module: +``` +cd wasm-module +wasm-pack build --target web --out-dir pkg +``` + +How to serve the web demo (requires wasm module): +``` +cd web-demo +python3 -m http.server +``` + +How to run the native player: +``` +cd native-player +cargo run --release +```