macOS workstation
1. Install toolchains
Run the following terminal commands to install all dependencies:
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh;
# Install xcode CLI tools
xcode-select --install;
# Install wasm-pack (for building Rust => wasm)
cargo install wasm-pack;
# Install the Pax CLI
cargo install pax-cli;
2. Run
Create a new project and run it:
pax-cli new my-first-project && cd my-first-project && pax-cli run