2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-19 10:39:02 +00:00

docs: fixed app installation command. (#802)

- In the app installation step, the command has been fixed.
- also changed the example command to use version 13 of ERPNext instead of 12
This commit is contained in:
Safwan Erooth 2022-05-07 10:15:41 +05:30 committed by GitHub
parent d5a54fe5a6
commit 75b83237a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,14 +173,14 @@ To install custom app
```shell
# --branch is optional, use it to point to branch on custom app repository
bench get --branch version-12 https://github.com/myusername/myapp
bench get-app --branch version-12 https://github.com/myusername/myapp
bench --site mysite.localhost install-app myapp
```
To install ERPNext (from the version-12 branch):
To install ERPNext (from the version-13 branch):
```shell
bench get --branch version-12 erpnext
bench get-app --branch version-13 erpnext
bench --site mysite.localhost install-app erpnext
```