mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-07-27 21:21:10 -05:00
11 lines
220 B
Bash
Executable File
11 lines
220 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
# Ensure current path is project root
|
|
cd "$(dirname "$0")/../"
|
|
|
|
|
|
poetry run sphinx-apidoc --force --separate --no-toc -o docs/source qdrant_client
|
|
poetry run sphinx-build docs/source docs/html
|