[DOC] README reflects new structure (in progress)

This commit is contained in:
Jorge Enrique Gómez Gómez 2022-12-23 07:18:08 +00:00
parent ce733d42bd
commit bb6319ad1d

View File

@ -10,30 +10,32 @@ To be installed into this directory structure:
├── custom [Modules developed in-house] ├── custom [Modules developed in-house]
├── community [Modules by OCA] ├── community [Modules by OCA, all repos mixed in a flat structure]
├── apps [Bought from third parties in the Odoo Apps Store] ├── apps [Bought from third parties in the Odoo Apps Store]
├── special [Developed by Odoo partner subcontractor] ├── vendor [Developed by an Odoo partner under contract]
└── vendor [Developed by an Odoo partner under contract] ├── vendor01 [In-house copy of modules removed from e-invoice repo]
└── vendor02 [New e-document modules (replaces original e-invoice repo)]
``` ```
## To download or update code from repositories: ## To download or update code from repositories:
```sh ```sh
./update_from_repo.sh [-h] -o={all|core|community|vendor|special|custom} ./update_from_repo.sh [-h] -o={all|core|community|vendor|vendor01|vendor02|custom}
``` ```
## To install into the production structure: ## To install into the production structure:
```sh ```sh
sudo ./install_odoo_code.sh [-h] -o={all|core|community|vendor|special|custom} sudo ./install_odoo_code.sh [-h] -o={all|core|community|vendor|vendor01|vendor02|custom}
``` ```
## To apply patches to installed code: ## To apply patches to installed code:
```sh ```sh
sudo ./apply_patches.sh [-h] -o={all|core|community|vendor|special} sudo ./apply_patches.sh [-h] -o={all|core|community|vendor|vendor02}
``` ```