From 45baf8cd2f4272a60616cb9db3a1e28228490bd8 Mon Sep 17 00:00:00 2001 From: Anagh Hegde Date: Tue, 25 Oct 2022 11:17:18 +0530 Subject: [PATCH] chore: Add git file system env to server setup guidelines (#17858) ## Description > Local server set up requires configuring the env variable APPSMITH_GIT_ROOT to be configured. This is PR adds the same info to the docs for the server set-up guidelines. --- contributions/ServerSetup.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contributions/ServerSetup.md b/contributions/ServerSetup.md index ede6b19996..2fbc45bbf9 100644 --- a/contributions/ServerSetup.md +++ b/contributions/ServerSetup.md @@ -185,6 +185,14 @@ With the initial configuration met, let's build the code. Note that you have to execute further steps into WSL terminal not in CMD. +### Setting up local file path for the git + +To point to a custom Git Root where the git repositories will be persisted, update the env variable called APPSMITH_GIT_ROOT to point to your custom file path. + +```console +APPSMITH_GIT_ROOT=./path/to/repo/directory +``` + ## Building and running the code 1. Clone Appsmith repository.