Skip to content

Commit f3679fd

Browse files
committed
change docs to build them to github pages
1 parent ebfb5c7 commit f3679fd

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
python-version: 3.12
2727
- name: Install requirements
28-
run: sudo apt update && sudo apt install --yes libev-dev
28+
run: sudo apt update && sudo apt install --yes libev-dev libvirt-dev
2929
- name: Install uv
3030
uses: astral-sh/setup-uv@v7
3131
- name: Install tox-uv

.github/workflows/markdownlint.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ description: Lint Markdown files
33

44
on:
55
push:
6-
branches:
7-
- master
86
paths:
97
- 'docs/**'
108
- mkdocs.yml

docs/index.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,23 @@ In a case you would like to run Genesis Core on your own infrastructure, you can
2727

2828
```bash
2929
sudo apt-get install build-essential python3.12-dev python3.12-venv \
30-
tox libev-dev libvirt-dev
30+
libev-dev libvirt-dev
31+
curl -LsSf https://astral.sh/uv/install.sh | sh
32+
source "$HOME"/.local/bin/env
3133
```
3234

3335
**Fedora:**
3436

3537
```bash
36-
sudo dnf install tox gcc libev-devel libvirt-devel
38+
sudo dnf install gcc libev-devel libvirt-devel
39+
curl -LsSf https://astral.sh/uv/install.sh | sh
40+
source "$HOME"/.local/bin/env
3741
```
3842

3943
Initialize virtual environment:
4044

4145
```bash
42-
tox -e develop
46+
uv sync
4347
source .tox/develop/bin/activate
4448
```
4549

0 commit comments

Comments
 (0)