My technical blog for sharing ideas, documentations and proTipes. MkDocs Material framework is used for creating this repo.
Refer to MkDocs Material website to get started with the setps or follow the guide below.
- Create python virtual environment
python -m venv .my-blog
source .my-blog/bin/activate
- install mkdocs-material using pip
pip install mkdocs-material
pip install --upgrade pip
- After the installation, create site using following command. It will create
docs/
folder andmkdocs.yaml
file in your github repo.
mkdocs new .
- You can now follow the guides given on mkdocs material documentation to customize it according to your preference or copy my format in
mkdocs.yaml
. - finally bundle and preview your website using
mkdocs serve
command.