Developing in Odoo most of the time means creating our own modules. In this chapter, we will create our first Odoo application and learn the steps needed to make it available to Odoo and install it.
Inspired by the notable http://todomvc.com/Â project, we will build a simple To-Do application. It should allow us to add new tasks, mark them as completed, and finally clear the task list of all the already-completed tasks.
We will get started by learning the basics of the development workflow: we'll set up a new instance for your work, create and install a new module, and update it to apply the changes we make along with the development iterations.
Odoo follows an MVC-like architecture, and we will go through the layers during our implementation of the To-Do application:
- The model layer, defining the structure...