Skip to content

Commit 2a4990c

Browse files
committed
[ADD] estate: created estate application and important files
1 parent b68a192 commit 2a4990c

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

estate/__init__.py

Whitespace-only changes.

estate/__manifest__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
'name': "Real Estate",
3+
'version': '1.0',
4+
'depends': ['base'],
5+
'author': "Darshil Naliyapara",
6+
'category': 'Category',
7+
'application': True,
8+
'description': """
9+
Description text
10+
""",
11+
# data files always loaded at installation
12+
'data': [
13+
'views/mymodule_view.xml',
14+
],
15+
# data files containing optionally loaded demonstration data
16+
'demo': [
17+
'demo/demo_data.xml',
18+
],
19+
}

0 commit comments

Comments
 (0)