From e01814d750b564383ee5a7c941e377de6529188b Mon Sep 17 00:00:00 2001 From: Jay Patel Date: Fri, 8 May 2026 15:14:04 +0530 Subject: [PATCH] [ADD] estate: add empty module shell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Create the initial Odoo tutorial addon structure so the module is recognized in Apps and can be installed as an empty shell. This PR only adds the minimal required files (__manifest__.py and __init__.py) and does not introduce any models/views yet, following the Odoo “Chapter 2: A New Application” tutorial step. --- estate/__init__.py | 0 estate/__manifest__.py | 10 ++++++++++ 2 files changed, 10 insertions(+) create mode 100644 estate/__init__.py create mode 100644 estate/__manifest__.py diff --git a/estate/__init__.py b/estate/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/estate/__manifest__.py b/estate/__manifest__.py new file mode 100644 index 00000000000..9b79f977d17 --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,10 @@ +{ + 'name': 'Estate', + 'version': '0.1', + 'category': 'Tutorials', + 'summary': 'Real Estate Advertisement tutorial module (empty shell)', + 'depends': ['base'], + 'data': [], + 'application': True, + 'installable': True, +}