No description
- Shell 83.7%
- Python 16.3%
| .forgejo/workflows | ||
| data | ||
| i18n | ||
| models | ||
| security | ||
| tests | ||
| views | ||
| .gitignore | ||
| .ruff.toml | ||
| .typos.toml | ||
| __init__.py | ||
| __manifest__.py | ||
| deploy.sh | ||
| README.md | ||
| README.rst | ||
| test.sh | ||
Odoo module template
This is a technical document intended for developers and sysadmins.
Installing
You can install this module by cloning it in any of the path specified by addons_path in the
Odoo configuration (recommended /opt/odoo/edurable).
Ensure the required dependencies are met.
# Install the module first time
sudo -u odoo odoo -c /etc/odoo/odoo.conf --logfile /dev/stdout --log-level info --log-handler ":INFO" -i <module> --stop-after-init --without-demo
# Update the module onward
sudo -u odoo odoo -c /etc/odoo/odoo.conf --logfile /dev/stdout --log-level info --log-handler ":INFO" -u <module> --stop-after-init --without-demo
Then, head over to the "Getting started" section in README.rst or the module information in Odoo.