A Traefik Labs Material Design theme for MkDocs
Material for MkDocs can be installed with pip:
pip install mkdocs-traefiklabsAdd the following line to mkdocs.yml:
theme:
name: traefik-labs- Check your node version, the .nvmrc file mentions the expected version.
If you use nvm, you can run
nvm useto set the correct node version to the environment. - Check if you have
mkdocsinstalled locally (it requires Python). You can find installation instructions here: https://www.mkdocs.org/user-guide/installation/ - You might need to add 2 additional dependencies to be able to run this project locally:
pip install mkdocs-redirectspip install mkdocs-minify-plugin
- Install the dependencies
npm install npm run build- this will generate the '/material' folder with the compiled theme (you need to re-run this if you add assets)npm run start- leave this running in a terminal, it will watch for code changes and rebuild the content (but not the assets)npm run serve- will launch a dev server at 127.0.0.1:8000 with the current theme, it has hot reload (not very precise, sometimes you need to hard refresh the page)
If you wish to set the context to see other products information, you need to set the
productconfig in themkdocs.ymlfile in the project's root directory. The dev server should automatically reload and you will see the changes in the browser.
- The 'material' directory generated by the
npm run buildis the one used in the documentation, so please don't forget running the build once you finish all the changes. TODO: add git hooks and run build on pre-push.