This is the home for the user-facing documentation and related infrastructure for ValidMind. If you want to make updates to our external docs site, you're in the right place.
We believe in the power of collaboration and welcome contributions from the community. If you've noticed an issue or have ideas for improvement, please create a pull request or submit an issue. A member of ValidMind's documentation team will review your suggestions and support you in contributing to the docs.
-
Follow the Quickstart for a 20 minute introduction to the Developer Framework and ValidMind Platform.
-
Read the Developer Framework docs for more information about ValidMind's open source tests and Jupyter notebooks.
-
Join the Community Slack to ask questions, get support, and connect with Model Risk Management (MRM) practioners.
We use Quarto to develop our docs site, an open-source docs framework based on Pandoc that supports multiple input formats such as Quarto Markdown, Jupyter notebooks, and Markdown.
You need:
- Quarto CLI
- The Quarto extension for your IDE, such as VS Code
Our core docs are sourced in Quarto Markdown under site/guide/. If you create new documentation, make sure to add it to the _quarto.yml file.
If you are creating a pull request, test your changes by rendering or previewing the site. Note that if this is your first time contributing, you will be asked to sign a contributor license agreement (CLA).
cd site
quarto preview
Just render the site:
cd site
quarto render
The rendered static HTML output lives in:
site
└── _site ...
└── *.html, *.css, *.png, *.js ...