Adding features work

This commit is contained in:
Auto
2025-12-30 16:11:08 +02:00
parent 5ffb6a4c5e
commit cb65cfe151
15 changed files with 562 additions and 126 deletions

View File

@@ -40,7 +40,7 @@ def print_step(step: int, total: int, message: str) -> None:
print("-" * 50)
def find_available_port(start: int = 8000, max_attempts: int = 10) -> int:
def find_available_port(start: int = 8888, max_attempts: int = 10) -> int:
"""Find an available port starting from the given port."""
for port in range(start, start + max_attempts):
try: