From 5b59088a7132cb1140387031c999598eae242421 Mon Sep 17 00:00:00 2001 From: Ivan Yelizariev Date: Tue, 25 May 2021 12:58:52 +0200 Subject: [PATCH] [IMP] rdtraining: no need to add web to dependencies `web` is not used directly and is installed automatically anyway. Having both `web` and `base` looks excessively, so coaches usually ask to delete `base`. But more correct solution is adding `base` only. Completly skipping dependencies is not good either -- see https://github.com/odoo/documentation/commit/76e05ccfb8413966d44f81a74da51d049f0a3996 --- content/developer/howtos/rdtraining/03_newapp.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/developer/howtos/rdtraining/03_newapp.rst b/content/developer/howtos/rdtraining/03_newapp.rst index bda76da0e..7cb1338a1 100644 --- a/content/developer/howtos/rdtraining/03_newapp.rst +++ b/content/developer/howtos/rdtraining/03_newapp.rst @@ -82,7 +82,7 @@ be uninstalled**. Think about your favorite Linux distribution package manager - ``/home/$USER/src/custom/estate/__manifest__.py`` The ``__manifest__.py`` file should only define the name and the dependencies of our modules. - Two framework modules are necessary: ``base`` and ``web``. + The only necessary framework module for now is ``base``. Restart the Odoo server and add the ``custom`` folder to the ``addons-path``: