From 3f6d5c5118b3aa58c37bda9285389cf687998a98 Mon Sep 17 00:00:00 2001 From: Thunder Date: Sun, 23 Jun 2024 10:23:58 +0300 Subject: [PATCH] feat: Update Algorand resource requirements: (#3001) - Increased minimum memory size to 16GB to meet the system requirements. - Updated CPU requirements to a minimum of 8 cores as per the latest specifications. - Added a hint message for users selecting the 'custom' option, advising them to review hardware requirements before deploying a new Algorand instance. --- .../playground/src/components/algorand_capacity.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/playground/src/components/algorand_capacity.vue b/packages/playground/src/components/algorand_capacity.vue index 078104d4c7..ad5b69a76b 100644 --- a/packages/playground/src/components/algorand_capacity.vue +++ b/packages/playground/src/components/algorand_capacity.vue @@ -66,6 +66,14 @@ /> + + + Please check the required + + hardware requirements + + before deciding to deploy a new Algorand instance. + @@ -88,8 +96,8 @@ const storageInput = ref(); const custom = ref(false); -const cpu = ref(2); -const memory = ref(4096); +const cpu = ref(8); +const memory = ref(16384); const storage = ref(100); watch(cpu, cpu => emits("update:cpu", cpu), { immediate: true });