You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
710 B

7 years ago
  1. # vertical-cooperative
  2. This repository gather odoo modules for cooperatives
  3. ## Deploying with pip
  4. We used [odoo setup tools](https://pypi.org/project/setuptools-odoo/#packaging-a-single-addon) to generate the pypi files from the odoo manifests. To deploy any packaged module, so that odoo can later install them,
  5. you can create a venv with this name (it's git-ignored)
  6. ```shell
  7. python -m venv venv
  8. ```
  9. And then pip-install them [from pypi](https://pypi.org/user/coopdevs/).
  10. ### Example
  11. For instance, for the addon `easy_my_coop_website_portal`
  12. ```
  13. pip install odoo12-addon-easy-my-coop-website-portal==12.0.1.0.0.99.dev9
  14. ```
  15. Beware that for word separation, pypi uses dashes `-` and odoo underscores `_`.