diff --git a/install/scripts/generate_keys.sh b/install/scripts/generate_keys.sh index fef5952..4f00306 100755 --- a/install/scripts/generate_keys.sh +++ b/install/scripts/generate_keys.sh @@ -5,8 +5,8 @@ source $SCRIPT_DIR/variables.sh # Run the script that generates keys and capture the output get_keys() { docker pull fidedocker/protocol-server > /dev/null 2>&1 - docker run --name temp -i fidedocker/protocol-server > /dev/null 2>&1 - output=$(docker exec -it temp node /usr/src/app/scripts/generate-keys 2>&1) + docker run --name temp -itd fidedocker/protocol-server > /dev/null 2>&1 + output=$(docker exec -i temp node /usr/src/app/scripts/generate-keys 2>&1) docker stop temp > /dev/null 2>&1 docker rm temp > /dev/null 2>&1 # Check if the script executed successfully diff --git a/onix-gui/GUI/app/api/install-bpp/route.js b/onix-gui/GUI/app/api/install-bpp/route.js index 49c2e80..533aa62 100644 --- a/onix-gui/GUI/app/api/install-bpp/route.js +++ b/onix-gui/GUI/app/api/install-bpp/route.js @@ -97,7 +97,6 @@ export async function POST(req, res) { // generating unqiuekey for bpp subscriberId const uniqueKeyId = bppSubscriberId + "-key"; let updateBppConfigCommand = `bash ${pathDir}/install/scripts/update_bpp_config.sh ${registryUrl} ${bppSubscriberId} ${uniqueKeyId} ${bppSubscriberUrl} ${webhookUrl}`; - console.log("Update BPP Config Command:", updateBppConfigCommand); const result1 = await executeCommand(updateBppConfigCommand); console.log("Result 1:", result1); diff --git a/onix-gui/GUI/app/yaml-gen/install-yaml/page.js b/onix-gui/GUI/app/yaml-gen/install-yaml/page.js index 22ad80c..fa97491 100644 --- a/onix-gui/GUI/app/yaml-gen/install-yaml/page.js +++ b/onix-gui/GUI/app/yaml-gen/install-yaml/page.js @@ -50,7 +50,7 @@ export default function InstallYaml() { }); } else { toast.update(toastId, { - render: "Yaml File Present 👌", + render: "Yaml File Downloaded 👌", type: "success", isLoading: false, autoClose: 5000, diff --git a/onix-gui/GUI/app/yaml-gen/page.js b/onix-gui/GUI/app/yaml-gen/page.js index 937fa35..6015abe 100644 --- a/onix-gui/GUI/app/yaml-gen/page.js +++ b/onix-gui/GUI/app/yaml-gen/page.js @@ -125,7 +125,7 @@ export default function CheckYaml() { label={"Version Number"} value={versionNumber} onChange={handleVersionChange} - placeholder="1.0.0" + placeholder="1.1.0" />