From e1999d409b0d315ba0b1e9581986895fe14aea27 Mon Sep 17 00:00:00 2001 From: Tomas Beran Date: Mon, 23 Feb 2026 16:47:57 +0100 Subject: [PATCH] Fix large instance RAM from 16GB to 8GB in template names docs --- docs/template/names.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/template/names.mdx b/docs/template/names.mdx index 7386bf81..2a7ddc03 100644 --- a/docs/template/names.mdx +++ b/docs/template/names.mdx @@ -109,7 +109,7 @@ await Template.build(template, 'myapp-small', { // Large instance await Template.build(template, 'myapp-large', { cpuCount: 8, - memoryMB: 16384, + memoryMB: 8192, }) ``` @@ -127,7 +127,7 @@ Template.build( template, 'myapp-large', cpu_count=8, - memory_mb=16384, + memory_mb=8192, ) ```