Config: Reduce minimum memory requirement from 2 to 1 GB

This commit is contained in:
Michael Mayer 2021-10-21 18:50:33 +02:00
parent 7a97a3a531
commit bf8de9be22

View file

@ -52,7 +52,7 @@ const Megabyte = 1000 * 1000
const Gigabyte = Megabyte * 1000
// MinMem is the minimum amount of system memory required.
const MinMem = 2 * Gigabyte
const MinMem = Gigabyte
// RecommendedMem is the recommended amount of system memory.
const RecommendedMem = 5 * Gigabyte