From 844ad09e3bbf7b3613658a55058c8b99865e964a Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Thu, 24 Oct 2024 14:22:52 -0300 Subject: [PATCH] feat: Add link to documentation in the CLI help --- src/vec2pg/cli.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vec2pg/cli.py b/src/vec2pg/cli.py index e0c2181..152ecd6 100644 --- a/src/vec2pg/cli.py +++ b/src/vec2pg/cli.py @@ -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")