This repository was archived by the owner on Jun 17, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
src/pipecat_cli/generators Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -353,6 +353,13 @@ def print_next_steps(self, project_path: Path) -> None:
353353 f" • Go to your project: [bold cyan]cd { self .config .project_name } [/bold cyan]"
354354 )
355355
356+ # Client setup
357+ if self .config .generate_client :
358+ console .print ("\n [bold]Client setup:[/bold]" )
359+ console .print (" • Go to client: In a separate terminal window or tab [bold cyan]cd client[/bold cyan]" )
360+ console .print (" • Install dependencies: [bold cyan]npm install[/bold cyan]" )
361+ console .print (" • Run dev server: [bold cyan]npm run dev[/bold cyan]" )
362+
356363 # Server setup
357364 console .print ("\n [bold]Server setup:[/bold]" )
358365 console .print (" • Go to server: [bold cyan]cd server[/bold cyan]" )
@@ -402,13 +409,6 @@ def print_next_steps(self, project_path: Path) -> None:
402409 else :
403410 console .print (f" [bold cyan]{ cmd ['command' ]} [/bold cyan]" )
404411
405- # Client setup
406- if self .config .generate_client :
407- console .print ("\n [bold]Client setup:[/bold]" )
408- console .print (" • Go to client: [bold cyan]cd client[/bold cyan]" )
409- console .print (" • Install dependencies: [bold cyan]npm install[/bold cyan]" )
410- console .print (" • Run dev server: [bold cyan]npm run dev[/bold cyan]" )
411-
412412 # Add cloud deployment info if applicable
413413 if self .config .deploy_to_cloud :
414414 console .print (
You can’t perform that action at this time.
0 commit comments