From e4c7053186647f79e31c85ac09576fea24d5deb7 Mon Sep 17 00:00:00 2001 From: tdurieux Date: Tue, 7 Sep 2021 07:37:29 +0200 Subject: [PATCH] feat: increases maximum file size --- config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.ts b/config.ts index 84c4f31..edb1617 100644 --- a/config.ts +++ b/config.ts @@ -34,8 +34,8 @@ const config: Config = { CLIENT_SECRET: "CLIENT_SECRET", GITHUB_TOKEN: "", DEFAULT_QUOTA: 2 * 1024 * 1024 * 1024 * 8, - MAX_FILE_SIZE: 10 * 1024 * 1024, // in b - MAX_REPO_SIZE: 500 * 8 * 1024, // in kb + MAX_FILE_SIZE: 100 * 1024 * 1024, // in b, 10MB + MAX_REPO_SIZE: 500 * 8 * 1024, // in kb, 500MB ENABLE_DOWNLOAD: true, AUTH_CALLBACK: "http://localhost:5000/github/auth", ANONYMIZATION_MASK: "XXXX",