Skip to content
This repository was archived by the owner on Jun 17, 2026. It is now read-only.

Commit 7889181

Browse files
committed
reorder Next steps: Client then Server
1 parent dafa0a2 commit 7889181

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/pipecat_cli/generators/project.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)