Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit 3f3a0cd

Browse files
committed
Improve setup file
1 parent 4808c3c commit 3f3a0cd

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

β€Žsrc/cli/setup.pyβ€Ž

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def ensure_directories(config: dict[str, Any]) -> None:
5151
results_dir.mkdir(exist_ok=True)
5252
findings_dir.mkdir(exist_ok=True)
5353

54-
click.echo(f"πŸ“ Created directories: {results_dir}, {findings_dir}")
54+
# Directories created silently
5555

5656

5757
def interactive_backend_setup() -> bool:
@@ -306,7 +306,6 @@ def main(config: str, verbose: bool, configure: bool) -> int | None:
306306
click.echo(" Run 'uv run setup --configure' to configure different backends")
307307

308308
# Load configuration (fallback compatibility)
309-
click.echo("πŸ“‹ Loading configuration...")
310309
try:
311310
config_data = load_config(config)
312311
click.echo(f"βœ… Configuration loaded from: {config}")
@@ -323,7 +322,6 @@ def main(config: str, verbose: bool, configure: bool) -> int | None:
323322
click.echo("πŸ“ Logging configured")
324323

325324
# Ensure directories exist
326-
click.echo("πŸ“ Setting up directories...")
327325
ensure_directories(config_data)
328326

329327
# Test connection
@@ -336,9 +334,7 @@ def main(config: str, verbose: bool, configure: bool) -> int | None:
336334
click.echo(" β€’ Run tests: uv run pentest")
337335
click.echo(" β€’ Review results: uv run review")
338336
click.echo(" β€’ Browse findings: uv run findings")
339-
click.echo("\nπŸ’‘ Configuration files:")
340-
click.echo(" β€’ Backend settings: settings.yaml")
341-
click.echo(" β€’ Test settings: config.yaml")
337+
click.echo("\nπŸ’‘ Use 'uv run setup --configure' to change backend settings")
342338
else:
343339
click.echo("\n❌ Environment setup failed")
344340
click.echo("Please fix the issues above before running tests")

0 commit comments

Comments
Β (0)