Skip to content

Commit 4ed7bb6

Browse files
authored
[doc] add cross-platform browser instructions (#456)
Clarify how to open docs website locally depending on OS
1 parent 90e6014 commit 4ed7bb6

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

docs/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,13 @@ cd docs/_build/html
5151
python3 -m http.server 8080
5252
```
5353

54-
10. Open the documentation in your browser:
54+
10. Open the documentation in your browser. Depending on your platform use `open` (macOS), `xdg-open` (Linux), or `start` (Windows):
5555
```bash
56-
open http://localhost:8080/en
57-
open http://localhost:8080/ru
56+
open http://localhost:8080/en # macOS
57+
xdg-open http://localhost:8080/en # Linux
58+
start http://localhost:8080/en # Windows
59+
60+
open http://localhost:8080/ru # macOS
61+
xdg-open http://localhost:8080/ru # Linux
62+
start http://localhost:8080/ru # Windows
5863
```

0 commit comments

Comments
 (0)