Adding and installing custom modules
As we described earlier, in the Exploring some basic concepts of Odoo.sh recipe, on the Odoo.sh platform, you can add custom Odoo modules. The platform is integrated with GitHub, so adding a new commit in the registered repository will create a new build in the respective branch. In this recipe, we will add a custom module in our repository and access that module in Odoo.sh.
Getting ready
For our example, we will choose the my_hostel
module from Chapter 18, Automated Test Cases. You can add any valid Odoo module in this recipe, but we will use the module with test cases here, as the Odoo.sh platform will perform all the test cases automatically. For simplicity, we have added this module in the GitHub repository of this book, at Chapter20/r0_initial_module/my_hostel
.
How to do it...
Follow these steps to add your custom modules to Odoo.sh:
- Get your Git repository on your local machine, add the
my_hostel
module in it, and then...