I connected VS Code to our GitHub account, but I’m unable to find Odoo standard modules on GitHub, I can only see third-party modules.
Thank you in advance for your help
Thank you in advance for your help
Hi,
Odoo standard modules (like Sales, CRM, Accounting) are not stored in your own GitHub repository by default.
They are maintained in Odoo’s official GitHub repository:
Community Edition: github.com/odoo/odoo
Enterprise Edition: github.com/odoo/enterprise (requires an active Enterprise license)
If you are using:
Odoo.sh → the standard modules are already included in the platform’s source code (you won’t see them in your custom repo).
Odoo Online (SaaS) → you cannot modify standard modules; only Studio/custom apps are allowed.
Self-hosted / Odoo.sh → clone the official Odoo repo locally to view standard modules, but best practice is not to modify core modules directly. Instead, create a custom module and extend them using inheritance.
Example:
Sales module path: addons/sale
Hope this clarifies
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrire| Publications associées | Réponses | Vues | Activité | |
|---|---|---|---|---|
|
Use Launchpad or Github
Résolu
|
1
janv. 16
|
5805 | ||
|
1
févr. 26
|
985 | |||
|
0
févr. 26
|
77 | |||
|
0
févr. 26
|
37 | |||
|
0
févr. 26
|
7 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
Hello,
You need to clone the Odoo from github repository.
git clone https://github.com/odoo/odoo.git -b 18.0 --depth 1 18.0(replace 18.0 with your version)
Add this folder to VS Code workspace and open addons/sale.
Hope this is helps
Thanks
lakhan@codespheretech.in