Skip to content

Commit 84aa1f7

Browse files
authored
Documentation updates (#450)
## Problem Need to overhaul README, other markdown docs, and docstrings to reflect recent changes and additions to the SDK. ## Solution <img width="600" alt="Kermit typing meme" src="https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExeHV4cTM1cjhsYWtmbG03aHgwZ3hleXM2OTUzbzI1YnN2dmloN3BidSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/LmBsnpDCuturMhtLfw/giphy.gif" />
1 parent b7989c2 commit 84aa1f7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3658
-1500
lines changed

.github/actions/build-docs/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ runs:
2121
- name: Build html documentation
2222
shell: bash
2323
run: |
24-
poetry run pdoc pinecone '!pinecone.core' '!pinecone.utils' --favicon ./favicon-32x32.png --docformat google -o ./docs
24+
poetry run pdoc pinecone '!pinecone.core' '!pinecone.utils' --favicon ./favicon-32x32.png --docformat google -o ./pdoc

.github/workflows/build-and-publish-docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
env:
2525
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
2626
with:
27-
source-directory: docs
27+
source-directory: pdoc
2828
destination-github-username: pinecone-io
2929
destination-repository-name: sdk-docs
3030
user-email: [email protected]

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ venv.bak/
141141
# pdocs documentation
142142
# We want to exclude any locally generated artifacts, but we rely on
143143
# keeping documentation assets in the docs/ folder.
144-
docs/*
145-
!docs/pinecone-python-client-fork.png
146-
!docs/favicon-32x32.png
144+
pdoc/*
145+
!pdoc/pinecone-python-client-fork.png
146+
!pdoc/favicon-32x32.png
147147

148148
# mypy
149149
.mypy_cache/

0 commit comments

Comments
 (0)