From efe85f5dcba33acc8840017e97dda6c9e228cc0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= Date: Thu, 12 Sep 2024 11:01:33 +0200 Subject: [PATCH] Add references to help section --- panel/command/__init__.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/panel/command/__init__.py b/panel/command/__init__.py index 9ba7447ca3..0c3d728d50 100644 --- a/panel/command/__init__.py +++ b/panel/command/__init__.py @@ -54,8 +54,21 @@ def main(args=None): from bokeh.command.subcommands import all as bokeh_commands bokeh_commands = bokeh_commands + [OAuthSecret, Compile, Convert, Bundle] + description = """\ +Found a Bug or Have a Feature Request? +Open an issue at: https://github.com/holoviz/panel/issues + +Have a Question? +Ask on our Discord chat server: https://discord.gg/rb6gPXbdAr + +Need Help? +Ask a question on our forum: https://discourse.holoviz.org + +For more information, see the documentation at: https://panel.holoviz.org """ + parser = argparse.ArgumentParser( - prog="panel", epilog="See ' --help' to read about a specific subcommand." + prog="panel", epilog="See ' --help' to read about a specific subcommand.", + description=description, formatter_class=argparse.RawTextHelpFormatter ) parser.add_argument('-v', '--version', action='version', version=__version__)