Getting Started
This guide walks through the smallest useful Rustipo workflow: install the binary, create a site, choose a palette, and preview locally.
Install Rustipo
cargo install rustipo
If you are working from the repository instead of the published crate, use cargo run -- while developing Rustipo itself.
Create A Site
rustipo new my-site cd my-site
The scaffold gives you a homepage, a couple of standalone pages, blog/, projects/, a default local theme, and a starter config.
Choose A Palette
rustipo palette list rustipo palette use catppuccin-mocha
Palette selection is separate from layout. The current theme keeps its structure, while Rustipo regenerates the color tokens used by that theme.
Preview And Validate
rustipo check rustipo dev
rustipo checkvalidates config, content, routes, themes, palettes, and internal links without writingdist/rustipo devbuilds, serves, watches, and live-reloads a local preview
Build Static Output
rustipo build
That writes the generated site into dist/.
Next Reads
If you are trying to understand how a docs-style site fits together, jump to Build the docs site.