File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,21 @@ Next ensure that the webpage builds, this can be done with
2727python3 -m venv sc_webpage_env
2828source sc_webpage_env/bin/activate
2929python3 -m pip install .
30- python3 -m jupyter book build -W ./docs
30+ cd docs
31+ jupyter book build --html --check-links --strict
3132```
3233
33- Inspect the webpage locally by opening ` ./docs/_build/html/index.html ` and navigating to the appropriate page.
34+ Inspect the webpage locally by running
35+ ``` bash
36+ python3 -m http.server -d _build/html 8000
37+ ```
38+ and opening a browser at ` http://localhost:8000 ` .
39+
3440
3541Before you push the changes, ensure that the text is properly formatted, run
3642
3743``` bash
38- pre-commit
44+ pre-commit run --all
3945```
4046
4147Then, make corrections and commit any changes before re-running pre-commit.
You can’t perform that action at this time.
0 commit comments