Skip to content

Commit 6e4093e

Browse files
committed
[ADD] estate: Init and manifest
Create empty __init__.py and __manifest__.py with module name, set as application.
1 parent b68a192 commit 6e4093e

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,13 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# JetBrains specific folders
132+
.idea/
133+
*/.idea/
134+
135+
# Odoo specific folders
136+
.run
137+
*/.run/
138+
.odev
139+
*/.odev/

estate/__init__.py

Whitespace-only changes.

estate/__manifest__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
'name': "Real Estate",
3+
'version': '1.0',
4+
'summary' "Manage properties and buyers."
5+
'depends': [
6+
'base'
7+
],
8+
'author': "wimar-odoo",
9+
'description': """
10+
Manage efficiently real estate properties for sale and match them with potential buyers.",
11+
""",
12+
'application': True,
13+
}

0 commit comments

Comments
 (0)