First Site
Create a site, run the dev server, and build the final HTML.
Create a site:
leaf init website
cd website
Start the local server:
leaf serve --watch
The --watch flag rebuilds the site when files change. It starts simple and practical: polling now, native file watching later when it earns the job.
Create a page:
leaf new about
Build the site:
leaf build
Clean generated files:
leaf clean
If you want a fresh docs build too:
leaf clean --docs
Leaf keeps the workflow small on purpose. Write files, build files, ship files. Very civilized.