Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Odoo 10 Developer mode and developer mode with assets

I'm new on Odoo v10. I'm using the debug mode with URL. But on the settings menu there is links to activate developer mode. I want to ask, What is the difference between "Activate the developer mode" and "Activate developer mode ( with asset)"?

like image 731
ahmetureme Avatar asked Feb 04 '17 07:02

ahmetureme


People also ask

What is developer mode with assets Odoo?

The developer mode with assets can be helpful in making small customizations to the Odoo database. It simply expands the settings for more advanced control. Whereas the developer mode with assets is used by developers who will be making considerable changes in the scripts.

What is debug with assets in Odoo?

Debug with assets mode (most of the time used by developers) It enables all features from normal debug plus some extra. Odoo internally use assets bundles to improve performance which internal merge+minifies all static assets like css and JavaScript.

What is Odoo Dev?

What is an Odoo Developer? An Odoo developer is a particular individual that creates, builds, and customizes applications or features within the Odoo ERP software. They have a strong background in programming concepts as well as the Odoo framework.


1 Answers

Debug mode (most of the time used by Administrator) With this mode you can unable some advance features/options in odoo. so if you open odoo with debug mode you will see some extra menus, extra fields to more advance configuration.

Debug with assets mode (most of the time used by developers) It enables all features from normal debug plus some extra. Odoo internally use assets bundles to improve performance which internal merge+minifies all static assets like css and JavaScript. So debug with assets will use actual css and javascript files instead of minifying/merging css and js files. This mode will reduce performance but it will give you proper error message in console if you are doing some JavaScript changes in odoo

Debug with assets mode (tests assets) According to this, starting from Odoo 13 (also available in Odoo 14), we have a new debug mode. This mode is mostly for developers & testers.

You can use this chrome plugin to quick switch between all those modes.

like image 179
Parth Gajjar Avatar answered Oct 04 '22 03:10

Parth Gajjar