Today we will that, how you can create a new custom module by scaffold command in Ubuntu Linux for your Odoo ERP software. As we know that, Odoo is an open source ERP system, written in Python programming language and very easy to learn.
It means, you can develop your own module to meet your business requirements by python coding. You just have to run scaffold command on your Linux server to create demo module with demo python code, access file, security and views.
How to Create New Module in Odoo
Scaffold Command in Odoo
First of all, open your terminal in Ubuntu Linux and paste this following command,
odoo-bin scaffold module_name --addons-path="odoo/addons"
- module_name: Replace this with the name you want for your module.
- odoo/addons: This should be the path to the directory where you want the module to be created. If you are already in the correct directory.
- odoo-bin: This should be the path to the directory of odoo-bin file.