Unclear prompt + bool based help text replaced during Quickstart (#4294)

Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
This commit is contained in:
Cfomodz
2025-12-14 16:10:43 -07:00
committed by GitHub
parent 9ad3f1f2b2
commit 27cc08c973

View File

@@ -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]")