diff --git a/README.md b/README.md index 04e46df..e829334 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ python -mvenv .venv source ./.venv/bin/activate pip install mkdocs pip install mkdocs-simple-blog -mkdocs --serve # to preview the website locally -mkdocs --buid # to build the website in ./site +mkdocs serve # to preview the website locally +mkdocs build # to build the website in ./site ``` with uv @@ -16,6 +16,6 @@ uv venv source ./.venv/bin/activate uv pip install mkdocs uv pip install mkdocs-simple-blog -mkdocs --serve # to preview the website locally -mkdocs --buid # to build the website in ./site +mkdocs serve # to preview the website locally +mkdocs buid # to build the website in ./site ```