This commit is contained in:
2026-01-14 04:27:54 -08:00
parent cd60c86868
commit 187a230e98
8 changed files with 318 additions and 154 deletions

5
CLI.py
View File

@@ -4571,6 +4571,8 @@ class MedeiaCLI:
return app
def run(self) -> None:
ensure_zerotier_server_running()
# Ensure Rich tracebacks are active even when invoking subcommands.
try:
config = self._config_loader.load()
@@ -4587,7 +4589,6 @@ class MedeiaCLI:
self.build_app()()
def run_repl(self) -> None:
ensure_zerotier_server_running()
# console = Console(width=100)
# Valid Rich rainbow colors
@@ -5443,6 +5444,8 @@ Come to love it when others take what you share, as there is no greater joy
if pipeline_ctx_ref:
pipeline_ctx_ref.clear_current_command_text()
stop_zerotier_server()
if __name__ == "__main__":
MedeiaCLI().run()