Skip to content

Commit b5fcecc

Browse files
authored
update docs for extension and server (#252)
1 parent 3ad6b54 commit b5fcecc

18 files changed

Lines changed: 188 additions & 40 deletions

File tree

.github/workflows/docs.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- uses: actions/setup-python@v2
15-
with:
16-
python-version: 3.11
17-
- run: curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.7.1 python3 -
18-
- run: poetry install
13+
- uses: actions/checkout@v5
1914

20-
- name: deploy docs
15+
- name: Install uv
16+
uses: astral-sh/setup-uv@v6
17+
18+
- name: Install the project
19+
run: uv sync
20+
21+
- name: Publish docs to GitHub Pages
2122
env:
2223
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
run: poetry run mkdocs gh-deploy --force
24+
run: |
25+
uv run mkdocs gh-deploy --force

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ test.sql
1111
META.json
1212
/vectorize-*
1313
site/
14-
poetry.lock
14+
uv.lock

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ compose-server-up:
44
docker compose -f server/docker-compose.yml up --build -d
55

66
docs:
7-
poetry install --no-directory --no-root
8-
poetry run mkdocs serve
7+
uv sync
8+
uv run mkdocs serve
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)