From c63991cab4fbf9358c31e8e1ffc2c8462c9bf8bf Mon Sep 17 00:00:00 2001 From: Gregory Luneau Date: Mon, 12 Feb 2024 09:44:06 -0500 Subject: [PATCH] set memory to 2BG (#138) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 344e70e..87364f7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,5 +20,5 @@ app.use(cors()); const controllers: IControllerBase[] = container.getAll(ContainerTypes.Controller); controllers.forEach((controller) => controller.register(app)); -functions.runWith({ memory: '512MB' }); +functions.runWith({ memory: '2GB' }); exports.app = functions.https.onRequest(app);