mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
docs: Add erpnext with add-ons
This commit is contained in:
parent
2a659fe28e
commit
798e2a2e95
3 changed files with 30 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -10,6 +10,7 @@ development/*
|
||||||
!development/apps-example.json
|
!development/apps-example.json
|
||||||
!development/apps-development.json
|
!development/apps-development.json
|
||||||
!development/apps-prod.json
|
!development/apps-prod.json
|
||||||
|
!development/apps-erpnext.json
|
||||||
!development/vscode-example/
|
!development/vscode-example/
|
||||||
|
|
||||||
# Pycharm
|
# Pycharm
|
||||||
|
|
|
||||||
|
|
@ -67,6 +67,7 @@ docker-compose -f .devcontainer/docker-compose.yml up -d && docker exec -e \"TER
|
||||||
### GitHub Login (SSH)
|
### GitHub Login (SSH)
|
||||||
|
|
||||||
> Make sure you're setting it up for Linux
|
> Make sure you're setting it up for Linux
|
||||||
|
|
||||||
1. [Check for any existing SSH Key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/checking-for-existing-ssh-keys)
|
1. [Check for any existing SSH Key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/checking-for-existing-ssh-keys)
|
||||||
2. [Generate an SSH Key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)
|
2. [Generate an SSH Key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)
|
||||||
3. [Add it to your GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account)
|
3. [Add it to your GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account)
|
||||||
|
|
@ -76,12 +77,16 @@ docker-compose -f .devcontainer/docker-compose.yml up -d && docker exec -e \"TER
|
||||||
|
|
||||||
#### Default Install
|
#### Default Install
|
||||||
|
|
||||||
1. Run the installer
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
frap-install
|
frap-install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### ERPNext with add-on apps
|
||||||
|
|
||||||
|
```sh
|
||||||
|
frap-install -j apps-erpnext.json
|
||||||
|
```
|
||||||
|
|
||||||
#### Development Branch Apps Install
|
#### Development Branch Apps Install
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
|
||||||
22
development/apps-erpnext.json
Normal file
22
development/apps-erpnext.json
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"url": "https://github.com/frappe/erpnext.git",
|
||||||
|
"branch": "version-15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/frappe/builder.git",
|
||||||
|
"branch": "develop"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/frappe/gameplan.git",
|
||||||
|
"branch": "main"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/frappe/insights.git",
|
||||||
|
"branch": "main"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://github.com/The-Commit-Company/Raven.git",
|
||||||
|
"branch": "main"
|
||||||
|
}
|
||||||
|
]
|
||||||
Loading…
Reference in a new issue