Odoo Build
This is the Mint System Odoo development environment.
This projects provides a highly opinionated way to manage and develop Odoo. It features:
- 🔍 Odoo Source: Checkout the Odoo Community and Enterprise Edition and start editing the source code.
- 🐳 Container Compose: Spin up an Odoo, Postgres, and pgAdmin container and experiment locally.
- 💻 Native: Start an Odoo server directly from the source.
- 🔄 Multiple Versions: With Odoo Build, you can switch between Odoo versions starting from 13.0 up to 19.0.
- 🛠️ Develop Modules: Generate new modules, develop new Odoo features locally.
- 📥 Import and Export Database: Use Odoo scripts to copy and restore a customer database to the local environment.
- 🤝 Community Repos: The most common community repos are checked out when setting up the project.
- ✂️ Customizing Snippets: Create snippets and push them to an Odoo database.
- 🕰️ Odoo Revisions: Snapshot the Odoo source at a specific date. See revisions for details.
- 📦 Container Image: Build and publish custom Odoo images. See README for details.
- 🔑 Credentials: Manage login credentials for Odoo and other applications.
- ⬆️ Odoo Upgrade: Helper commands to ease the Odoo upgrade process.
- 🚀 And More: See task help.
Requirements
The Odoo development environment has the following requirements:
MacOS
MacOS has the following additional requirements:
brew install grep gettextCommand Completion (Optional)
bash/zsh alias task='./task' with completion.
Usage
The usage section is a set of workflows. See task help or task for details about the project commands.
Clone this repository.
git clone git@github.com:Mint-System/Odoo-Build.git
cd Odoo-BuildCheckout the Odoo version. Show supported versions with task list-versions.
task checkout "$VERSION"Install build and Python dependencies. Currently supported: Arch Linux, Darwin, Debian, Fedora, Ubuntu, Pop!_OS, SteamOS, Windows with Ubuntu on WSL2.
task installDecide wether you want to run Odoo in native mode (recommended) or as a container.
Run Odoo from source
Start database container only.
task start dbInitialize database.
task init-dbStart Odoo from source.
task start sourceThe browser will be opened automatically.
Run Odoo as container
Set the Odoo addons path in your .env file:
ODOO_ADDONS_PATH=/mnt/addons/,/mnt/oca/,/mnt/enterprise,/mnt/themes/Run container compose.
task startInitialize database with the image script.
task exec odoo init-dbOpen browser to http://localhost:8069 and login with admin:admin.
Development
Create a new module from source
Create a new module.
task generate-module addons/project/project_sprintAdd a new model.
task generate-module-model addons/project/project_sprint project.sprintAdd model security.
task generate-module-security addons/project/project_sprint project.sprintGenerate module docs.
task generate-module-docs addons/project/project_sprint project.sprintLoad modules from external folder
To load modules from a external folder, set this env var in your .env file:
ODOO_ADDONS_PATH=/path/to/your/module-repo,../odoo-project/odoo-appsThe paths will be appended to the Odoo config.
Initialize without demo data
In your .env file set this env var:
WITHOUT_DEMO=TrueSet Odoo database name
The default database name is the checked out Odoo version.
To define another name, set this env var in your .env file:
ODOO_DATABASE=odooDisable browser open
To disable the browser open when starting the Odoo server edit the .env file:
BROWSER_OPEN=falseSet podman as container engine
If you are using podman, set this .env var:
CONTAINER_ENGINE=podmanChange log level
To change the log level of Odoo set this env var in your .env file:
LOG_LEVEL=debugManage database with container
Start pgadmin.
task pgadminOpen pgadmin http://localhost:8000/ and login with admin@example.com:admin.
Stop all containers
Without service name the stop commands stops all containers.
task stopRemove containers
Removes containers and volumes.
task removeDrop database
To drop the default database run:
task drop-dbDefine Postgres image version
Define the Postgres image in your .env file:
POSTGRES_IMAGE=postgres:16-alpineBuild and publish container image
Ensure the host machine can build multi-platform images.
Checkout latest revision of the Odoo version.
task checkout-latest-revisionBuild and publish the Odoo image.
task build images/odoo --pushSetup mail catcher
Start mailpit server.
task start mailpitWhen you send mails in Odoo they will be catched and shown on http://localhost:8025/.
Source env file
Assuming the name of the environment is test, you source env vars like this:
eval "$(task show-env test)"Forward mails with Odoo Mailgate
Start all containers.
task startInitialize the Odoo database.
task exec odoo init-dbLog into Odoo and setup an alias for info@yourcompany.com.
Send a test mail with swaks:
swaks --to info@yourcompany.com --from sender@example.com \
--server localhost:25 \
--body "This is a test email for the Odoo mailgate system." \
--header "Subject: Test Email for Odoo"The mail will be forwarded to Odoo.
Trace the mailgate log with:
docker exec mailgate tail -f /var/log/mail.logYou can also send a mail with tls encryption:
swaks --to info@yourcompany.com --from sender@example.com \
--server localhost:587 \
--tls \
--body "This is a test email for the Odoo mailgate system." \
--header "Subject: Test Email for Odoo"Create Odoo revision
Check the latest official Odoo image tag on https://hub.docker.com/_/odoo/tags.
Replace the - with a . in the tag name and create a revision:
task create-revision "$VERSION.YYYYDDMM"Replace all image references in the docs.
Commit and push revision with tag:
task commit-and-push-revisionUpdate repo template from oca-addons-repo-template
Run copier to copy the OCA template fiels
source task source
copier copy --UNSAFE https://github.com/OCA/oca-addons-repo-template.git "templates/$VERSION"Answer with:
- $VERSION
Mint-SystemMint System GmbHserver-toolsEnterfor all remaining questions.
Remove unnecessary linter files.
cd "templates/$VERSION"
rm .copier-answers.yml
rm .pylintrc-mandatory
rm README.mdRestore the folder templates/$VERSION/.github and update templates/$VERSION/.gitignore with:
# Odoo Build
tmpIn .pre-commit-config.yaml remove mandatory pylint odoo:
- id: pylint_odoo
args:
- --rcfile=.pylintrc-mandatoryAnd set https://www.mint-system.ch/ as args for the mainainter-tools.
In the .ruff.toml set this option at the top:
line-length = 120Template the server tools repo and run the linter:
task template-repo addons/server_tools
cd addons/server_tools
task allRefine the templates based on the linter results.
Debug Odoo with VSCode.
In VSCode define a break point for a selected method.
Run Odoo source with a debugger.
task debug sourceIn VSCode run Python - attach debugger to attach the debugger.
Open http://localhost:8069 and run the method that you want to debug.
VSCode should jump to the breakpoint and you can step through the method.
Profile Odoo memory usage
Run Odoo with memray.
task record-with-memray nativeOpen http://localhost:8069 and finish the recording with ctrl+c.
The flamegraph report will be generated and opened.
Profile Odoo execution time
Run Odoo and get the process id.
PID=$(ps -eo pid,comm | grep -m 1 'odoo' | awk '{print $1}')Record the Odoo process with py-spy.
task record-with-py-spy "$PID"Finish the recording with ctrl+c.
The browser will open https://www.speedscope.app/. Upload the tmp/speedscope-profiling.json file.