Skip to content

Documentation book for the Floresta libraries, covering the architecture and code internals.

License

Notifications You must be signed in to change notification settings

JoseSK999/floresta-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Floresta Docs

CI Deploy

This repository contains the source for the Floresta Docs mdBook, an in-depth explanation of the Floresta libraries for building a full Bitcoin node.

You can either build the book locally, as explained below, or read it online.

Note

This book is fully functional and ready to use, though we might add a few appendices or extra chapters down the road.

Documentation Maintenance

This book heavily uses code snippets that reference actual code from Floresta. We have written a Rust snippet-checker script that compares the snippets in the book with the corresponding code in the repository.

This check runs daily at 5 AM UTC, as well as on pull requests and pushes to the main branch, via the CI workflow. Whenever the check fails, the script nicely prints the code difference and makes it easy to assess which explanations should be rewritten, if any.

Deployment

Each time a change is pushed to main, the updated book is automatically deployed online if CI completes successfully. In other words, if CI and Deploy are passing, the deployed book snippets are up-to-date, and all explanations should be consistent with the snippets (although this is a bit harder to ensure).

Requirements

Building the book requires mdBook. To get it, assuming you have Rust installed, run:

cargo install mdbook --locked

Moreover, this book uses two mdBook plugins:

  • For checking internal and external links before building, it uses mdbook-linkcheck.
cargo install mdbook-linkcheck
  • For rendering interactive quizzes in the book, it uses mdbook-quiz.
cargo install mdbook-quiz --locked

Building

Finally, you can build the book by typing:

mdbook build

The rendered book will be at the root of this directory, inside book/html. You can then just open the index.html file in your usual browser.

Run Snippet Checker

If you want to run the snippet-checker, you need to have a local clone of the Floresta source code. Then, you should pass a valid path to it via the CODE_DIR environment variable.

For instance, if you have cloned Floresta into the ~/projects directory, you would run:

CODE_DIR=~/projects/Floresta cargo run --release

About

Documentation book for the Floresta libraries, covering the architecture and code internals.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages