Skip to content

Commit

Permalink
feat: Update Algorand resource requirements: (#3001)
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
Mahmoud-Emad authored Jun 23, 2024
1 parent 2611309 commit 3f6d5c5
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions packages/playground/src/components/algorand_capacity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@
/>
</input-tooltip>
</input-validator>

<v-alert v-if="custom" type="info" class="mb-4">
Please check the required
<a href="https://developer.algorand.org/docs/run-a-node/setup/install/#hardware-requirements" target="_blank">
hardware requirements
</a>
before deciding to deploy a new Algorand instance.
</v-alert>
</template>
</div>
</template>
Expand All @@ -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 });
Expand Down

0 comments on commit 3f6d5c5

Please sign in to comment.