mkdocs usage

This commit is contained in:
Tomi 2024-07-10 18:52:19 +02:00
parent a9bb4c9bb1
commit bb48dcec4e

View File

@ -6,8 +6,8 @@ python -mvenv .venv
source ./.venv/bin/activate source ./.venv/bin/activate
pip install mkdocs pip install mkdocs
pip install mkdocs-simple-blog pip install mkdocs-simple-blog
mkdocs --serve # to preview the website locally mkdocs serve # to preview the website locally
mkdocs --buid # to build the website in ./site mkdocs build # to build the website in ./site
``` ```
with uv with uv
@ -16,6 +16,6 @@ uv venv
source ./.venv/bin/activate source ./.venv/bin/activate
uv pip install mkdocs uv pip install mkdocs
uv pip install mkdocs-simple-blog uv pip install mkdocs-simple-blog
mkdocs --serve # to preview the website locally mkdocs serve # to preview the website locally
mkdocs --buid # to build the website in ./site mkdocs buid # to build the website in ./site
``` ```