mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
Feat: Add dev & prod branch installation
This commit is contained in:
parent
b059fdba66
commit
42889f3d2e
4 changed files with 77 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -8,6 +8,8 @@ development/*
|
|||
!development/README.md
|
||||
!development/installer.py
|
||||
!development/apps-example.json
|
||||
!development/apps-development.json
|
||||
!development/apps-prod.json
|
||||
!development/vscode-example/
|
||||
|
||||
# Pycharm
|
||||
|
|
|
|||
15
README.md
15
README.md
|
|
@ -64,12 +64,27 @@ docker-compose -f .devcontainer/docker-compose.yml up -d && docker exec -e \"TER
|
|||
|
||||
## Starting Development
|
||||
|
||||
### Default Install
|
||||
|
||||
1. Run the installer
|
||||
|
||||
```sh
|
||||
frap-install
|
||||
```
|
||||
|
||||
### Development Branch Install
|
||||
|
||||
```sh
|
||||
frap-install -j apps-development.json
|
||||
```
|
||||
|
||||
### Prod Install
|
||||
|
||||
```sh
|
||||
frap-install -j apps-prod.json
|
||||
```
|
||||
|
||||
|
||||
**Note: For additional args and configs run ```frap-install --help``` first.**
|
||||
|
||||
2. cd into rafnav's development bench
|
||||
|
|
|
|||
30
development/apps-development.json
Normal file
30
development/apps-development.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
[
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/LMS.git",
|
||||
"branch": "development"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/RAFNAV_ERP.git",
|
||||
"branch": "development"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/raf_finance.git",
|
||||
"branch": "development"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/matter_management.git",
|
||||
"branch": "development"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/documentation.git",
|
||||
"branch": "development"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/filing.git",
|
||||
"branch": "development"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/LRMS.git",
|
||||
"branch": "development"
|
||||
}
|
||||
]
|
||||
30
development/apps-prod.json
Normal file
30
development/apps-prod.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
[
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/LMS.git",
|
||||
"branch": "main"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/RAFNAV_ERP.git",
|
||||
"branch": "main"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/raf_finance.git",
|
||||
"branch": "main"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/matter_management.git",
|
||||
"branch": "main"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/documentation.git",
|
||||
"branch": "main"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/filing.git",
|
||||
"branch": "main"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/cronos-capital/LRMS.git",
|
||||
"branch": "main"
|
||||
}
|
||||
]
|
||||
Loading…
Reference in a new issue