mirror of
https://gitea.invidious.io/iv-org/documentation.git
synced 2024-08-15 00:53:34 +00:00
18 lines
353 B
Markdown
18 lines
353 B
Markdown
|
# The Invidious documentation
|
||
|
|
||
|
# Running the documentation locally for development purposes
|
||
|
|
||
|
## Local `mkdocs-material` installation
|
||
|
|
||
|
```bash
|
||
|
# You might want to create a virtualenv first
|
||
|
pip install mkdocs-material
|
||
|
mkdocs-material serve
|
||
|
```
|
||
|
|
||
|
## With docker
|
||
|
|
||
|
```bash
|
||
|
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material:latest
|
||
|
```
|