From 27cc08c9730df5c0f348ff540445cce06e8e139e Mon Sep 17 00:00:00 2001 From: Cfomodz <31261577+Cfomodz@users.noreply.github.com> Date: Sun, 14 Dec 2025 16:10:43 -0700 Subject: [PATCH] Unclear prompt + bool based help text replaced during Quickstart (#4294) Co-authored-by: Shuchang Zheng --- skyvern/cli/init_command.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/skyvern/cli/init_command.py b/skyvern/cli/init_command.py index 9284bbec..5ecd11aa 100644 --- a/skyvern/cli/init_command.py +++ b/skyvern/cli/init_command.py @@ -32,12 +32,13 @@ def init_env( ) console.print("[italic]This wizard will help you set up Skyvern.[/italic]") - run_local = Confirm.ask( - "Would you like to run Skyvern [bold blue]locally[/bold blue] or in the [bold purple]cloud[/bold purple]?", - default=False, + infra_choice = Prompt.ask( + "Would you like to run Skyvern [bold blue]local[/bold blue]ly or in the [bold purple]cloud[/bold purple]?", choices=["local", "cloud"], ) + run_local = infra_choice == "local" + if run_local: setup_postgresql(no_postgres) console.print("📊 [bold blue]Running database migrations...[/bold blue]")