Mkdocs
Set of useful tips for developers who are using bash, git, mysql, etc.
Install:
python3 -m venv .venv
- install python virtual envsource .venv/bin/activate
- activate virtual envpip install mkdocs
- install mkdocs (more info)pip install mkdocs-material
- install material theme (more info)- make sure the PATH is configured:
export PATH="$HOME/.local/bin:$PATH"
Upgrade:
usr/bin/python3 -m pip install --upgrade pip
- upgrade pythonpip install --upgrade mkdocs
- upgrade mkdocspip install --upgrade mkdocs-material
- upgrade material theme (more info)
Usage:
mkdocs serve
- start HTTP servermkdocs gh-deploy
- deploy to github pages- Markdown Cheatsheet