goldendict-ng/website/README.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
302 B
Markdown
Raw Permalink Normal View History

2023-04-16 00:53:40 +00:00
# Local build setup
With venv
```
cd ./website
2024-11-14 03:48:06 +00:00
python3 -m venv ./venv/
2023-04-16 00:53:40 +00:00
source ./venv/bin/activate
# source ./venv/bin/activate.fish
2024-11-14 03:48:06 +00:00
pip3 install mkdocs-material
2023-04-16 00:53:40 +00:00
```
Then
```
mkdocs serve
```
# More details can be found
* <https://squidfunk.github.io/mkdocs-material/>
* <https://www.mkdocs.org/>