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)