Skip to content

Commit

Permalink
Merge pull request #11 from supabase-community/fix1
Browse files Browse the repository at this point in the history
feat: Add link to documentation in the CLI help
  • Loading branch information
olirice authored Oct 25, 2024
2 parents 1641ea8 + 844ad09 commit a4dd7e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/vec2pg/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

from vec2pg.plugins import pinecone, qdrant

app = typer.Typer()
# Link to documentation to be shown in the CLI help.
doc_url = "Documentation:\thttps://supabase-community.github.io/vec2pg"

app = typer.Typer(epilog=doc_url)
app.add_typer(pinecone.app, name="pinecone")
app.add_typer(qdrant.app, name="qdrant")

Expand Down

0 comments on commit a4dd7e6

Please sign in to comment.