mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-01-30 06:12:06 +00:00
Adding features work
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user