mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-07-23 11:11:01 -05:00
* * chore(docs): add nbsphinx extension to Sphinx configuration * chore(pyproject.toml): add nbsphinx package to project dependencies * * docs(source/examples/install.rst): delete install.rst file * docs(source/examples/quickstart.ipynb): create quickstart.ipynb file * docs(source/index.rst): update examples section to include quickstart.ipynb * * attempt(generate_docs.sh): add pandoc installation step * * chore(generate_docs_netlify.sh): add installation of pandoc package * * chore(generate_docs.sh): comment out the installation of pandoc * chore(generate_docs_netlify.sh): comment out the installation of pandoc * * chore(generate_docs_netlify.sh): add nbsphinx package installation * chore(generate_docs_netlify.sh): install pandoc using apt-get * * chore(generate_docs_netlify.sh): change installation command for pandoc from 'sudo apt-get install' to 'apt-get install' * * chore(generate_docs.sh): add pandoc installation and configuration * * chore(generate_docs.sh): remove unused code and comments * feat(generate_docs_netlify.sh): add pandoc installation and configuration * * chore(generate_docs_netlify.sh): update script to install pandoc using brew * chore(generate_docs_netlify.sh): update script to install qdrant-client using pip * * docs(index.rst): update API references in the documentation * * docs(source/index.rst): remove append_payload and limit parameters from code examples * * fix(docs): fix incorrect argument name in code example * * fix(quickstart.ipynb): add limit parameter to the queries * * fix(docs): update comments in code examples for clarity and consistency * * docs(index.rst): remove unnecessary API references and sections * * docs(index.rst): add highlighted classes section with relevant classes * * fix(generate_docs.sh): install pandoc using apt-get before running sphinx-apidoc * * docs(index.rst): update root `toctree` directive
9 lines
218 B
Bash
Executable File
9 lines
218 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 |