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