From cd44e58af4e51c3f1836d8b3f788d29a339bbe4b Mon Sep 17 00:00:00 2001 From: pryes-odoo Date: Fri, 3 Jul 2026 17:18:51 +0530 Subject: [PATCH] [ADD] estate: create initial estate module Initialized the Estate application Configured the required module metadata Configured the module as an installable application Completed Chapter 2 --- 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..b13b8279b19 --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,10 @@ +{ + 'name': 'Estate', + 'version': '1.0', + 'category': 'Tutorials', + 'depends': ['base'], + 'installable': True, + 'application': True, + 'author': 'Prerana Yesugade', + 'license': 'LGPL-3', +}