From ed549f3d917ed0f3ef8d9df160ac37f122398896 Mon Sep 17 00:00:00 2001 From: Malay Gondalia <134581231+malay-gondalia@users.noreply.github.com> Date: Fri, 1 Mar 2024 11:37:04 +0530 Subject: [PATCH] Update custom-apps.md updated docs to confirm download from git repo as per changes made in my update. --- docs/custom-apps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/custom-apps.md b/docs/custom-apps.md index 9d31c6bb..4f3cbe00 100644 --- a/docs/custom-apps.md +++ b/docs/custom-apps.md @@ -20,7 +20,7 @@ export APPS_JSON='[ "branch": "version-15" }, { - "url": "https://{{ PAT }}@git.example.com/project/repository.git", + "url": "https://{{ GIT_USER_ID:PAT }}@git.example.com/project/repository.git", "branch": "main" } ]' @@ -36,7 +36,7 @@ export APPS_JSON_BASE64=$(base64 -w 0 /path/to/apps.json) Note: -- `url` needs to be http(s) git url with personal access tokens without username eg:- http://{{PAT}}@github.com/project/repository.git in case of private repo. +- `url` needs to be http(s) git url with personal access tokens without username eg:- http://{{GIT_USER_ID:PAT}}@github.com/project/repository.git in case of private repo. - add dependencies manually in `apps.json` e.g. add `payments` if you are installing `erpnext` - use fork repo or branch for ERPNext in case you need to use your fork or test a PR.