Skip to content

Commit 5e9d49f

Browse files
authored
Fix large instance RAM from 16GB to 8GB in template names docs (#128)
1 parent 107ab76 commit 5e9d49f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/template/names.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ await Template.build(template, 'myapp-small', {
109109
// Large instance
110110
await Template.build(template, 'myapp-large', {
111111
cpuCount: 8,
112-
memoryMB: 16384,
112+
memoryMB: 8192,
113113
})
114114
```
115115

@@ -127,7 +127,7 @@ Template.build(
127127
template,
128128
'myapp-large',
129129
cpu_count=8,
130-
memory_mb=16384,
130+
memory_mb=8192,
131131
)
132132
```
133133

0 commit comments

Comments
 (0)