Update custom-apps.md

updated docs to confirm download from git repo as per changes made in my update.
This commit is contained in:
Malay Gondalia 2024-03-01 11:37:04 +05:30 committed by GitHub
parent ede911af0a
commit ed549f3d91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.