Skip to Content
Menu
This question has been flagged
4 Replies
9028 Views

I'm new to Odoo and have been learning to build a module using the documentation here: https://www.odoo.com/documentation/10.0/howtos/backend.html#build-an-odoo-module .  My question is, how do I access this module from the front end?  It is the addons folder with all of the downloaded apps.  Logged in as the administrator with the developer-mode activated, I can't see any way to add modules.  If I look at the Apps page I see "Update Apps List", but I am not sure if this is the same as modules, and either way it has no effect.

Avatar
Discard
Best Answer

Make sure the created custom module is present in the addons folder.( eg:/opt/odoo10/odoo/addons in Ubuntu). Now start the server from the terminal using the following command:

./odoo-bin

then login as admin user and activate developer mode. Then goto the 'Apps' menu and click "Update apps list" option. 

Then remove the "Apps" filter from the filter box and verify if your module is appearing. If yes Go ahead and install it.

Note: Make sure you have the below line in your __manifest__.py file. The module created from ./odoo-bin scaffold <module name> <where to put it> won't have these lines in its __manifest__.py. So check that also.
'demo': [        'demo/demo.xml',    ],
 'installable': True,
 'application': False,
 'auto_install': False,
 'qweb': [], }

Avatar
Discard
Best Answer

Hai

\ how to install custom modules    

I think this will help you more.

Avatar
Discard
Author Best Answer

That worked, thank you so much!

Avatar
Discard

Welcome