From a37ce051c5659a057176b0c7d3139dedcc0a42a9 Mon Sep 17 00:00:00 2001 From: Marek Wolan Date: Fri, 27 Oct 2023 14:50:31 +0100 Subject: [PATCH] Add ARCD GATE setup to primaite setup --- src/primaite/cli.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/primaite/cli.py b/src/primaite/cli.py index 43b97022..a5b3be46 100644 --- a/src/primaite/cli.py +++ b/src/primaite/cli.py @@ -95,6 +95,8 @@ def setup(overwrite_existing: bool = True) -> None: WARNING: All user-data will be lost. """ + from arcd_gate.cli import setup as gate_setup + from primaite import getLogger from primaite.setup import reset_demo_notebooks, reset_example_configs @@ -113,6 +115,9 @@ def setup(overwrite_existing: bool = True) -> None: _LOGGER.info("Rebuilding the example notebooks...") reset_example_configs.run(overwrite_existing=True) + _LOGGER.info("Setting up ARCD GATE...") + gate_setup() + _LOGGER.info("PrimAITE setup complete!")