mirror of
https://github.com/InsanusMokrassar/docs.git
synced 2024-11-08 09:24:00 +00:00
21 lines
745 B
Markdown
21 lines
745 B
Markdown
# docs
|
|
|
|
It is a documentation repository for the projects of [InsanusMokrassar](https://github.com/InsanusMokrassar).
|
|
|
|
## Running locally
|
|
|
|
For the ease of dependencies management, this repository uses [Poetry](https://python-poetry.org), a Python project & dependencies manager.
|
|
In case you wish to interact with these docs locally, make sure to [install](https://python-poetry.org/docs/#installation) it first.
|
|
|
|
In `Fleet` you may use [these configs](https://github.com/InsanusMokrassar/docs/blob/master/.fleet/run.json) to work with the repo.
|
|
|
|
To build or run it in vanilla terminal, use the following commands:
|
|
|
|
```bash
|
|
poetry run mkdocs build # Just build the site
|
|
```
|
|
|
|
```bash
|
|
poetry run mkdocs serve # Run a local server with the site
|
|
```
|