From c75c2a36a6c100e1f6812e78c7b9b9e2c3917a65 Mon Sep 17 00:00:00 2001 From: tdurieux Date: Tue, 7 Sep 2021 17:32:40 +0200 Subject: [PATCH] chore: reduce max repo size due to blimitation in the download --- config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.ts b/config.ts index edb1617..23f6677 100644 --- a/config.ts +++ b/config.ts @@ -35,7 +35,7 @@ const config: Config = { GITHUB_TOKEN: "", DEFAULT_QUOTA: 2 * 1024 * 1024 * 1024 * 8, MAX_FILE_SIZE: 100 * 1024 * 1024, // in b, 10MB - MAX_REPO_SIZE: 500 * 8 * 1024, // in kb, 500MB + MAX_REPO_SIZE: 60 * 8 * 1024, // in kb, 60MB ENABLE_DOWNLOAD: true, AUTH_CALLBACK: "http://localhost:5000/github/auth", ANONYMIZATION_MASK: "XXXX",