I’m working on a custom module but I need some help because I don’t know where’s the issue.
The module is uploaded in the database and it shows up in the Apps list with other installable modules. I can install it and upgrade it. But it doesn’t show up in Odoo main page (/web#cids=1&action=menu). This is my manifest:
# -*- coding: utf-8 -*-
{
'name': "GEI_dashboard",
'summary': "A dashboard for the server´s resources",
'description': "This module shows a dashboard with a server's resources, such as used RAM and total RAM, how many users are connected, how many users are in total, etc. It also shows alerts.",
'author': "GEI Project",
'website': "https://gei-project.odoo.com/",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
# for the full list
'category': 'Uncategorized',
'version': '0.2',
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
'data': [
# 'security/ir.model.access.csv',
'views/views.xml',
'views/templates.xml',
],
'application': True,
'installable': True,
'odoo': '13.0+'
}
Done, it works now. Thanks! Sorry I'm new using Odoo