From c99b75a9eafd8b00bddde2be3bea05b9002f2d68 Mon Sep 17 00:00:00 2001 From: cardosofede Date: Wed, 4 Oct 2023 22:48:34 -0300 Subject: [PATCH] (feat) add controllers to new bot creation --- ui_components/launch_bot_card.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui_components/launch_bot_card.py b/ui_components/launch_bot_card.py index 34d42dd..6cf9f7f 100644 --- a/ui_components/launch_bot_card.py +++ b/ui_components/launch_bot_card.py @@ -33,6 +33,8 @@ class LaunchBotCard(Dashboard.Item): DockerManager().create_hummingbot_instance(instance_name=bot_name, base_conf_folder=f"{constants.HUMMINGBOT_TEMPLATES}/{self._base_bot_config}/.", target_conf_folder=f"{constants.BOTS_FOLDER}/{bot_name}/.", + controllers_folder=constants.CONTROLLERS_PATH, + controllers_config_folder=constants.CONTROLLERS_CONFIG_PATH, image=self._image_name) with st.spinner('Starting Master Configs instance... This process may take a few seconds'): time.sleep(3)