Repo structure
mdbook-utils
is written in Rust and follows the typical cargo package layout.
- The source code is in the
src
folder. The main executable is inmain.rs
and thecli
module. It calls the API inlib.rs
. - A simple test
mdbook
book is found intest_book
. - The user guide' sources are in
user_guide
. - The Dev Container and Docker (Compose) configuration files are found in
.devcontainer
.devcontainer.json
uses Docker Compose (configured incompose.yaml
andcompose.override.yaml
), which in turn runs a container fromDockerfile
.
.github
contains the continuous integration (GitHub Actions) workflow.