Install your Rust setup environment - follow this guide. We use trunk for our WASM application bundler and can be installed via Cargo:
cargo install trunk
Additionally, WASM has it's architecture target within Rust which is needed to run the application and can be installed like:
rustup target add wasm32-unknown-unknown
The frontend is powered by WASM with Trunk. In order to run the frontend application, do the following:
$ kolab/frontend > trunk serve
$ kolab/backend > cargo run --release