I have been struggling with Odoo ever since the start. This is probably one of the worst documented pieces of software in the world. I tried asking this on their forums but you are not allowed to post until you have x amount of Karma which you seem to only get when purchasing courses via them.
I have followed the installation tutorial for the source for Ubuntu via https://www.odoo.com/documentation/13.0/setup/install.html#id7 to the T.
I managed to start the clean vanilla version and get into the superuser mode, which by the way, was also hidden like crazy on how to enable it. Then going to the actual settings requires you to install at least one app. This makes absolutely no sense to me.
Anyway, I end up getting to the point where I found how to do those above basic things. Now I want to create a custom module following your very own tutorial: https://www.odoo.com/documentation/13.0/howtos/backend.html#.
I use the scaffold command to initiate the quick creation of a module. So far so good. But when I actually want to get it loaded into Odoo, everything seems to fall apart. I have searched for hours and I end up with the same instructions on various sources: Go to apps > Update Apps List and refresh. NOTHING happens. Absolutely NOTHING. I remove any filter and search for the name of the custom module but it is not there.
I am completely empty and am entirely stuck. The lack of documentation and the few documentation that can be found seems to not even work properly.
So before I give up on Odoo forever: How can I create a module and add it to Odoo?!
And before you ask I have tried literally everything I can think of:
-started from scratch and a clean installation well over 5 times
-I even completely ERASED UBUNTU and restarted from scratch
-I have tried to scaffold, reboot Odoo, add it manually, amend the route of the addons to the config, created my custome module in a different dir, named it differently, filled in the manifest, absolutely NOTHING works.
I will greatly appreciate if anyone can help me here but I do not have high hopes. I am at the end of my latin and patience when it comes down to Odoo.
__manifest__.py
-file or your module isn't in your addons path. – ex4__manifest__.py
,__init__.py
,models/yourmodule.py
,models/__init__.py
andviews/yourview.xml
. That scaffold creates controllers directory and other stuff you usually don't need. Depending what you are doing of course. – ex4