pnpm install
rustup target add wasm32-unknown-unknown
cargo install cargo-make
cargo install --locked cargo-leptos
# Run this in the background
cargo make tailwind-watch
# Run the dev mode server
cargo make watch
# Build the prod server
cargo make build
# Test the code
cargo make test
# Format the code
cargo make format
# Check the code
cargo make check
# Perform all of the CI checks
cargo make local-ci