docs: remove comments from shell commands

This commit is contained in:
Revant Nandgaonkar 2024-02-29 20:56:29 +05:30 committed by GitHub
parent 87895a7049
commit 758897b01b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,9 +10,6 @@ cd frappe_docker
`apps.json` needs to be passed in as build arg environment variable. `apps.json` needs to be passed in as build arg environment variable.
```shell ```shell
set env variable APPS_JSON using following shell command
export APPS_JSON='[ export APPS_JSON='[
{ {
"url": "https://github.com/frappe/erpnext", "url": "https://github.com/frappe/erpnext",
@ -28,8 +25,6 @@ export APPS_JSON='[
} }
]' ]'
set env variable APPS_JSON_BASE64 using following shell command
export APPS_JSON_BASE64=$(echo ${APPS_JSON} | base64 -w 0) export APPS_JSON_BASE64=$(echo ${APPS_JSON} | base64 -w 0)
``` ```