File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ # Parallel Programming Course Documentation
2+
3+ ### How to make and test your changes
4+
5+ 1 . Navigate to the documentation directory:
6+ ``` bash
7+ cd parallel_programming_course/docs
8+ ```
9+
10+ 2 . (Optional) Create a virtual environment:
11+ ``` bash
12+ python3 -m venv venv
13+ ```
14+
15+ 3 . Install the required dependencies:
16+ ``` bash
17+ pip install -r requirements.txt
18+ ```
19+
20+ 4 . Build the documentation:
21+ ``` bash
22+ make html
23+ ```
24+
25+ 5 . Update the locale files:
26+ ``` bash
27+ make update
28+ ```
29+
30+ 6 . Re-build the documentation:
31+ ``` bash
32+ make html
33+ ```
34+
35+ 7 . Make local deployment of the changes:
36+ ``` bash
37+ cd _build/html
38+ python3 -m http.server 8080
39+ ```
40+
41+ 8 . Open the documentation in your browser:
42+ ``` bash
43+ open http://localhost:8080/en
44+ open http://localhost:8080/ru
45+ ```
You can’t perform that action at this time.
0 commit comments