odoo-tutorials/awesome_dashboard/__manifest__.py
2024-09-20 15:55:56 -10:00

35 lines
892 B
Python

# -*- coding: utf-8 -*-
{
'name': "Awesome Dashboard",
'summary': """
Starting module for "Discover the JS framework, chapter 2: Build a dashboard"
""",
'description': """
Starting module for "Discover the JS framework, chapter 2: Build a dashboard"
""",
'author': "Odoo",
'website': "https://www.odoo.com/",
'category': 'Tutorials/AwesomeDashboard',
'version': '0.1',
'application': True,
'installable': True,
'depends': ['base', 'web', 'mail', 'crm'],
'data': [
'views/views.xml',
],
'assets': {
'web.assets_backend': [
'awesome_dashboard/static/src/**/*',
('remove', 'awesome_dashboard/static/src/dashboard/**/*'),
],
'awesome_dashboard.dashboard': [
'awesome_dashboard/static/src/dashboard/**/*'
],
},
'license': 'AGPL-3'
}