mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-07-23 11:11:01 -05:00
18 lines
277 B
Bash
Executable File
18 lines
277 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -xe
|
|
|
|
# Ensure current path is project root
|
|
cd "$(dirname "$0")/../"
|
|
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
|
|
brew install pandoc
|
|
|
|
export PATH="/opt/buildhome/.local/bin:$PATH"
|
|
pip3 install poetry
|
|
poetry install
|
|
|
|
sphinx-build docs/source docs/html
|