Skip to content

Commit 4281085

Browse files
committed
[ADD] estate: Chapter 2
1 parent 6bdaa36 commit 4281085

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

estate/__init__.py

Whitespace-only changes.

estate/__manifest__.py

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# -*- coding: utf-8 -*-
2+
{
3+
'name': "Estate",
4+
5+
'summary': """
6+
Starting module for "Discover the JS framework, chapter 1: Owl components"
7+
""",
8+
9+
'description': """
10+
Starting module for "Discover the JS framework, chapter 1: Owl components"
11+
""",
12+
13+
'author': "Odoo",
14+
'website': "https://www.odoo.com",
15+
16+
# Categories can be used to filter modules in modules listing
17+
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
18+
# for the full list
19+
'category': 'Tutorials',
20+
'version': '0.1',
21+
22+
# any module necessary for this one to work correctly
23+
'depends': ['base', 'web'],
24+
'application': True,
25+
'installable': True,
26+
'data': [
27+
'views/templates.xml',
28+
],
29+
'assets': {
30+
'awesome_owl.assets_playground': [
31+
('include', 'web._assets_helpers'),
32+
('include', 'web._assets_backend_helpers'),
33+
'web/static/src/scss/pre_variables.scss',
34+
'web/static/lib/bootstrap/scss/_variables.scss',
35+
'web/static/lib/bootstrap/scss/_maps.scss',
36+
('include', 'web._assets_bootstrap'),
37+
('include', 'web._assets_core'),
38+
'web/static/src/libs/fontawesome/css/font-awesome.css',
39+
'awesome_owl/static/src/**/*',
40+
],
41+
},
42+
'license': 'AGPL-3'
43+
}

0 commit comments

Comments
 (0)