Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Quick start

Get the application running in 5 minutes.

Prerequisites

  • Rust nightly (managed by rust-toolchain.toml)
  • cargo-leptos: cargo install cargo-leptos --locked

1. Clone and build

cargo leptos build

2. Run with hot-reload

cargo leptos watch

Or using just:

just serve

3. Open the app

Navigate to http://127.0.0.1:1337 in your browser.

Development workflow

just          # Show available commands
just dev      # Build in dev mode
just check    # Format + clippy checks
just fix      # Auto-fix formatting
just test     # Run E2E tests
just ci       # Simulate CI pipeline

Next steps