From f2208376da9ba1abcb8628a28feedc0dfde0b92b Mon Sep 17 00:00:00 2001 From: Axel Kittenberger Date: Wed, 24 Nov 2021 17:40:09 +0100 Subject: [PATCH] init --- config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.js b/config.js index 77a3108..ce27a5e 100644 --- a/config.js +++ b/config.js @@ -7,16 +7,16 @@ const config = module.exports = { forward: { }, ssl: { } }; config.olServer = 'http://localhost'; // used if all the working directories in one place -config.baseDir = '/home/data/'; +config.baseDir = '/home/gitbridge/'; // place of the git repositories -config.reposDir = baseDir + 'repos/'; +config.reposDir = config.baseDir + 'repos/'; // place of the git clones -config.padsDir = baseDir + 'pads/'; +config.padsDir = config.baseDir + 'pads/'; // blueprint of the overleaf version (only differences to git to be uploaded again) -config.bluesDir = baseDir + 'blues/'; +config.bluesDir = config.baseDir + 'blues/'; // milliseconds to not downsync a project again config.downSyncTimeout = 30000;