From 5e918ecc12ccd122ee0d40a113c8cc378b896b4a Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Fri, 20 Jun 2025 08:30:36 +0200 Subject: [PATCH] Refine docs/README.md --- docs/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/README.md b/docs/README.md index 24de25ee6..29c72c5e3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,9 +2,9 @@ ### How to make and test your changes -1. Navigate to the documentation directory: +1. Navigate to the project root directory: ```bash -cd parallel_programming_course/docs +cd parallel_programming_course ``` 2. (Optional) Create a virtual environment: @@ -12,9 +12,10 @@ cd parallel_programming_course/docs python3 -m venv venv ``` -3. Install the required dependencies: +3. Install the required dependencies (for the projects and the docs): ```bash pip install -r requirements.txt +pip install -r docs/requirements.txt ``` 4. Configure the documentation build: @@ -46,7 +47,7 @@ cmake --build build -t docs_html 9. Make local deployment of the changes: ```bash -cd _build/html +cd docs/_build/html python3 -m http.server 8080 ```