Book containing the Juniper documentation.
The book is built with mdBook.
You can install it with:
cargo install mdbook
To launch a local test server that continually re-builds the book and autoreloads the page, run:
mdbook serve
You can build the book to rendered HTML with this command:
mdbook build
The output will be in the ./_rendered
directory.
To run the tests validating all code examples in the book, run:
cd ./tests
cargo test
All Rust code examples in the book are compiled on the CI.
This is done using the skeptic library.