Refactor release workflow and update documentation for Homebrew installation

This commit is contained in:
Felix Rudat
2026-01-27 09:36:58 +01:00
parent 19d462a4aa
commit ac29893867
5 changed files with 77 additions and 70 deletions
+6
View File
@@ -52,6 +52,12 @@ app.add_typer(lists_app, name="lists")
app.add_typer(cards_app, name="cards")
app.add_typer(notifications_app, name="notifications")
@app.callback(invoke_without_command=True)
def main(ctx: typer.Context):
"""Planka CLI."""
if ctx.invoked_subcommand is None:
click.echo(ctx.get_help())
def get_env_config() -> tuple[Optional[str], Optional[str], Optional[str]]:
return (
os.getenv("PLANKA_URL"),