### Clone the Example Module Source: https://www.odoo.com/documentation/19.0/developer/tutorials/web.html Download the example module 'petstore' to begin customization. Ensure Odoo's addons path is updated and the module is installed. ```bash $ git clone http://github.com/odoo/petstore ``` -------------------------------- ### Register a Tour Source: https://www.odoo.com/documentation/19.0/developer/reference/backend/testing.html Register a tour by providing its name, the starting URL, and the sequence of steps. This is the initial setup for any tour. ```javascript import tour from 'web_tour.tour'; tour.register('rental_product_configurator_tour', { url: '/web', // Here, you can specify any other starting url }, [ // Your sequence of steps ]); ``` -------------------------------- ### Install Custom Module via Script Source: https://www.odoo.com/documentation/19.0/developer/tutorials/website_theme/01_theming.html This command installs your custom theme module and ensures it's applied to the specified database. Adjust the --addons-path and --db-filter as needed for your setup. ```bash ./odoo-bin --addons-path=../enterprise,addons,../myprojects --db-filter=theming -d theming --without-demo=True -i website_airproof --dev=xml ``` -------------------------------- ### Settings View Example Source: https://www.odoo.com/documentation/19.0/developer/reference/user_interface/view_architectures.html An example of a settings view structure using `app`, `setting`, and `block` elements. ```xml