From a5198148a385eee6db99c4e19d29b00ec22268fa Mon Sep 17 00:00:00 2001 From: Johan Lundberg Date: Fri, 20 Feb 2026 15:03:45 +0100 Subject: [PATCH] make output from cli commands easier to read --- src/porchlight/cli.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/porchlight/cli.py b/src/porchlight/cli.py index 30a4d5b..ee22847 100644 --- a/src/porchlight/cli.py +++ b/src/porchlight/cli.py @@ -55,6 +55,8 @@ def create_invite( settings = Settings() effective_ttl = ttl if ttl is not None else settings.invite_ttl url = asyncio.run(_create_invite(settings, username, effective_ttl, note)) + typer.echo("") + typer.echo("Share this link to let the user setup their account:") typer.echo(url) @@ -67,6 +69,8 @@ def initial_admin( settings = Settings() groups = group if group is not None else ["admin", "users"] url = asyncio.run(_initial_admin(settings, username, groups)) + typer.echo("") + typer.echo("Follow this invite link to create your first admin user:") typer.echo(url)