add readme

This commit is contained in:
2026-02-17 09:45:56 -08:00
parent 2f8c1ed6f4
commit 27589446b2

17
README.md Normal file
View File

@@ -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
```