# Run all tests
cargo test
# Run a specific test by name
cargo test <test_name>
# Run tests for a specific crate
cargo test -p laurus
cargo test -p laurus-cli
cargo test -p laurus-server
# Build the documentation site
mdbook build docs
# Start a local preview server (http://localhost:3000)
mdbook serve docs
# Lint markdown files
markdownlint-cli2 "docs/src/**/*.md"