Use the CLI script rather than python -m for running the main app from devserver.

This commit is contained in:
2026-02-09 15:55:08 +00:00
parent b8bf46132a
commit ef6bce8f3f
+1 -6
View File
@@ -207,10 +207,5 @@ def setup_cli(
host = endpoints[0]["host"]
port = endpoints[0]["port"]
cmd = [
sys.executable,
"-m",
cli,
f"--listen={host}:{port}",
]
cmd = [cli, f"--listen={host}:{port}"]
return f"http://{host}:{port}", cmd