First of all install mkdocs:
pip install mkdocs-materialEdit files and test it locally with:
mkdocs serveThen open the URL printed in the terminal (default http://127.0.0.1:8000/).
Edits to docs/ or mkdocs.yml hot-reload automatically.
If http://127.0.0.1:8000/ does not load (for example on Windows where
wslrelay may hold port 8000), pick another port with --dev-addr:
mkdocs serve --dev-addr 127.0.0.1:8765Before pushing, verify the build is clean (errors on broken nav links or missing pages):
mkdocs build --strictEnjoy!