mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
23 lines
302 B
Markdown
23 lines
302 B
Markdown
# Local build setup
|
|
|
|
With venv
|
|
```
|
|
cd ./website
|
|
python3 -m venv ./venv/
|
|
source ./venv/bin/activate
|
|
# source ./venv/bin/activate.fish
|
|
pip3 install mkdocs-material
|
|
```
|
|
|
|
Then
|
|
|
|
```
|
|
mkdocs serve
|
|
```
|
|
|
|
# More details can be found
|
|
|
|
* <https://squidfunk.github.io/mkdocs-material/>
|
|
|
|
* <https://www.mkdocs.org/>
|