@@ -67,7 +67,7 @@ def list_tasks(context: Context) -> None:
6767 # Create a Rich table
6868 table = Table (
6969 title = "Available Invoke Tasks" ,
70- box = box .ROUNDED ,
70+ box = box .SIMPLE ,
7171 show_header = True ,
7272 header_style = "bold cyan"
7373 )
@@ -93,7 +93,7 @@ def info(context: Context) -> None:
9393 f"[cyan]Command:[/cyan] [dim]{ COMPOSE_COMMAND } [/dim]" ,
9494 title = "[bold]Infrahub Configuration[/bold]" ,
9595 border_style = "blue" ,
96- box = box .ROUNDED
96+ box = box .SIMPLE
9797 )
9898 console .print ()
9999 console .print (info_panel )
@@ -108,7 +108,7 @@ def start(context: Context) -> None:
108108 console .print (Panel (
109109 f"[green]Starting Infrahub { edition } [/green] [dim]({ INFRAHUB_VERSION } )[/dim]" ,
110110 border_style = "green" ,
111- box = box .ROUNDED
111+ box = box .SIMPLE
112112 ))
113113 context .run (f"{ COMPOSE_COMMAND } up -d" )
114114 console .print ("[green]✓[/green] Infrahub started successfully" )
@@ -153,7 +153,7 @@ def bootstrap_bash(context: Context, branch: str = "main") -> None:
153153 f"[dim]Branch:[/dim] { branch } \n "
154154 f"[dim]This will load schemas, menu, bootstrap data, security, and repository[/dim]" ,
155155 border_style = "blue" ,
156- box = box .ROUNDED
156+ box = box .SIMPLE
157157 ))
158158 console .print ()
159159 context .run (f"./scripts/bootstrap.sh { branch } " )
@@ -176,7 +176,7 @@ def demo_dc_arista(context: Context, branch: str = "add-dc3") -> None:
176176 f"[bold cyan]Arista Data Center Demo[/bold cyan]\n "
177177 f"[dim]Branch:[/dim] { branch } " ,
178178 border_style = "cyan" ,
179- box = box .ROUNDED
179+ box = box .SIMPLE
180180 ))
181181
182182 console .print (f"\n [cyan]→[/cyan] Creating branch: [bold]{ branch } [/bold]" )
@@ -235,7 +235,7 @@ def containerlab(context: Context, branch: str = "add-dc3", topology: str = "DC-
235235 f"[dim]Branch:[/dim] { branch } \n "
236236 f"[dim]Topology:[/dim] { topology } " ,
237237 border_style = "magenta" ,
238- box = box .ROUNDED
238+ box = box .SIMPLE
239239 ))
240240
241241 console .print (f"\n [magenta]→[/magenta] Generating configurations from branch: [bold]{ branch } [/bold]" )
@@ -256,7 +256,7 @@ def destroy(context: Context) -> None:
256256 console .print (Panel (
257257 "[red]Destroying all containers and volumes[/red]" ,
258258 border_style = "red" ,
259- box = box .ROUNDED
259+ box = box .SIMPLE
260260 ))
261261 context .run (f"{ COMPOSE_COMMAND } down -v" )
262262 console .print ("[green]✓[/green] All containers and volumes destroyed" )
@@ -269,7 +269,7 @@ def stop(context: Context) -> None:
269269 console .print (Panel (
270270 "[yellow]Stopping all containers[/yellow]" ,
271271 border_style = "yellow" ,
272- box = box .ROUNDED
272+ box = box .SIMPLE
273273 ))
274274 context .run (f"{ COMPOSE_COMMAND } down" )
275275 console .print ("[green]✓[/green] All containers stopped" )
@@ -283,7 +283,7 @@ def restart(context: Context, component: str = "") -> None:
283283 console .print (Panel (
284284 f"[yellow]Restarting component:[/yellow] [bold]{ component } [/bold]" ,
285285 border_style = "yellow" ,
286- box = box .ROUNDED
286+ box = box .SIMPLE
287287 ))
288288 context .run (f"{ COMPOSE_COMMAND } restart { component } " )
289289 console .print (f"[green]✓[/green] Component '{ component } ' restarted" )
@@ -293,7 +293,7 @@ def restart(context: Context, component: str = "") -> None:
293293 console .print (Panel (
294294 "[yellow]Restarting all containers[/yellow]" ,
295295 border_style = "yellow" ,
296- box = box .ROUNDED
296+ box = box .SIMPLE
297297 ))
298298 context .run (f"{ COMPOSE_COMMAND } restart" )
299299 console .print ("[green]✓[/green] All containers restarted" )
@@ -306,7 +306,7 @@ def run_tests(context: Context) -> None:
306306 console .print (Panel (
307307 "[bold cyan]Running Tests[/bold cyan]" ,
308308 border_style = "cyan" ,
309- box = box .ROUNDED
309+ box = box .SIMPLE
310310 ))
311311 context .run ("pytest -vv tests" )
312312 console .print ("[green]✓[/green] Tests completed" )
@@ -320,7 +320,7 @@ def validate(context: Context) -> None:
320320 "[bold cyan]Running Code Validation[/bold cyan]\n "
321321 "[dim]Ruff → Mypy → Pytest[/dim]" ,
322322 border_style = "cyan" ,
323- box = box .ROUNDED
323+ box = box .SIMPLE
324324 ))
325325
326326 console .print ("\n [cyan]→[/cyan] Running Ruff checks..." )
@@ -344,7 +344,7 @@ def format(context: Context) -> None:
344344 "[bold magenta]Formatting Python Code[/bold magenta]\n "
345345 "[dim]Ruff Format → Ruff Fix[/dim]" ,
346346 border_style = "magenta" ,
347- box = box .ROUNDED
347+ box = box .SIMPLE
348348 ))
349349
350350 exec_cmds = ["ruff format ." , "ruff check . --fix" ]
@@ -391,7 +391,7 @@ def lint_all(context: Context) -> None:
391391 "[bold yellow]Running All Linters[/bold yellow]\n "
392392 "[dim]YAML → Ruff → Mypy[/dim]" ,
393393 border_style = "yellow" ,
394- box = box .ROUNDED
394+ box = box .SIMPLE
395395 ))
396396
397397 console .print ("\n [yellow]→[/yellow] Running yamllint..." )
@@ -415,7 +415,7 @@ def docs_build(context: Context) -> None:
415415 "[bold blue]Building Documentation Website[/bold blue]\n "
416416 f"[dim]Directory:[/dim] { DOCUMENTATION_DIRECTORY } " ,
417417 border_style = "blue" ,
418- box = box .ROUNDED
418+ box = box .SIMPLE
419419 ))
420420
421421 exec_cmd = "npm run build"
0 commit comments