Skip to main content

workflow CodeFactor

Project documentation

odoo-env

jeo Software (c) 2026 jorge.obiols@gmail.com This code is distributed under the MIT license.

Tool to manage docker based odoo environments. This is a Dockerized Environment to manage Odoo. Two environments are provided debug and prod.

Directory structure

/odoo_ar
└── odoo-19.0
    ├── client_one
    │   ├── config              odoo.conf
    │   ├── data_dir            filestore
    │   ├── backup_dir          zip files with backups
    │   ├── log                 odoo.log
    │   ├── postgresql          postgres database
    │   └── sources
    │       ├── cl-client_one   repository with project module
    │       └── client-one      repository with custom modules
    ├── site-packages           python packages installed on the image
    └── src                     odoo core modules

Functionality

usage: oe [-h] [-i [CLIENT]] [--org ORG] [-R] [-p] [-w] [-r] [-S] [-s] [-u] [-I MODULE] [-H] [-V] [-Q MODULES] [-c CLIENT] [-v] [-d DATABASE] [-m MODULE] [-f BACKUP_FILE]
          [--deploy-keys] [--no-deactivate] [--debug] [--prod] [--restore] [--create-test-db] [--test-all] [--base-dir BASE_DIR]

Odoo Environment Manager v0.16.14 - by jeo Software <jorge.obiols@gmail.com>

options:
  -h, --help           show this help message and exit
  -i [CLIENT]          Install environment / update repositories. With no value, repositories are taken from the manifest. Pass a CLIENT name to build the canonical
                       repo URL git@github.com:<org>/cl-<client>.git for the first installation (e.g. oe -i labutic). A full git URL (git@... or https://...) is also
                       accepted.
  --org ORG            Set the GitHub organization used to build canonical repo URLs (e.g. quilsoft-org). This parameter is persistent. Defaults to quilsoft-org when
                       unset.
  -R                   Run postgres, wdb and aeroo images (aeroo only for old odoo versions).
  -p                   Pull Images. Download all images declared in client manifest.
  -w                   Create / Overwrite config file.
  -r                   Run odoo image
  -S                   Stop postgres, wdb and aeroo images.
  -s                   Stop odoo image.
  -u                   Updates modules in the database. With no parameters, all modules are updated. Use -m list-modules to update only the specified modules Use -d
                       databasename to update a database other than the default database.
  -I MODULE            Install module(s) in the default database. Pass a module name or a comma-separated list (e.g. -I sale,stock). Modules already installed
                       are updated (-u) instead of reinstalled. Optional: -d <database> to target a database other than the default ([client]_prod).
  -H                   Show odoo server help, it shows the help from the odoo image declared in the cliente manifest
  -V                   Show version number and exit.
  -Q MODULES           Run the tests. Required parameters: list of modules to test separate by commas (without spaces) e.g. -Q sale,stock. Use -Q all to auto-discover
                       and run every module with a tests/ directory in the current repository. Optional parameters: -d <database>; if omitted, the default
                       [project]_test database will be used, NOTE: The database used for testing must be created with demo data and must have admin/admin credentials.
  -c CLIENT            Set default client name. This parameter is persistent
  -v                   Go verbose mode. Prints every command
  -d DATABASE          Set default Database name. This option is persistent
  -m MODULE            Module to update. Used with -u (update) i.e. -m sale for updating sale module -m all for updating all modules. NOTE: if you perform -u without
                       -m it asumes all modules
  -f BACKUP_FILE       Filename to restore. Used with --restore. To get the name of If ommited the newest file will be restored
  --deploy-keys        Available only in production mode. It creates a pair of deploy keys for each private repository found in the manifest, lists the public keys
                       for adding to the repositories.
  --no-deactivate      No Deactivate database before restore. WARNING this command is deprecated
  --debug              Set default environment mode to debug. This parameter is persistent.
  --prod               Set default environment mode to production. This parameter is persistent.
  --restore            Restore a backup into the client database. By default restores the newest .zip file found in backup_dir into the default database
                       ([client]_prod). Use -f to specify a particular backup file and -d to target a different database. The restored database is deactivated
                       automatically unless --no-deactivate is passed.
  --create-test-db     Create a test database with all project modules.
  --test-all           Run all module tests with coverage and enforce the coverage threshold.
  --base-dir BASE_DIR  Set the root directory where all client environments are stored (e.g. /odoo_ar/). Saved persistently in the config file; subsequent commands
                       will use this value as the default until changed.

Installation

sudo pipx install odoo-env
see proyect in https://pypi.org/project/odoo-env/

Changelog

  • 0.16.14 - ADD oe -I to install a module in the client database (already-installed modules are updated with -u instead of reinstalled)
  • 0.16.13 - FIX oe -Q accepts modules in sibling library repos under sources/ (#129)
  • 0.16.12 - FIX database existence check works with psql 18 (direct connection instead of variable interpolation)
  • 0.16.11 - FIX oe -Q selects -i/-u per module state and detects zero-test modules as failures (#128)
  • 0.16.10 - ADD oe -i : to install a migrated branch (#125)
  • 0.16.9 - FIX oe -i resolves the client name on a fresh install without a default (#123)
  • 0.16.8 - FIX -Q / -i / -u / --create-test-db omit docker -it when stdin is not a TTY (CI/headless)
  • 0.16.7 - Refactoring of the code, no changes to functionality, remove old manifest filename "openerp.py",
  • 0.16.6 - FIX oe -p extract-sources in version 19.0
  • 0.16.5 - FIX oe -p extract-sources in version 19.0
  • 0.16.4 - FIX oe -p extract-sources in version 19.0
  • 0.16.2 - When a test is run with -Q, it forces the use of the [project]_test database.
  • 0.16.1 - change dbtools version to 1.3.1 - support for postgres 18.0
  • 0.16.0 - Added support for postgres 18.0
  • 0.15.2 - Added support for WDB 3.3.1 for Odoo versions >= 16, and remove repository creation when pulling images with -p to speed up the process, since the repository has little use.
  • 0.15.1 - Fix wdb image name, fix python version in images
  • 0.15.0 - Added support for WDB 3.3.1 for Odoo versions > 17.0.
  • 0.14.3 - Compatibility with python 3.11
  • 0.14.2 - Fix install bug in debug mode
  • 0.14.0 - Support for installation on a server with multiple private repositories.
  • 0.13.2 - Correction of a paragraph with double quotes inside double quotes.
  • 0.13.1 - A second configuration section is defined. The original is used when setting up a server, while the other, called config-local, is used to define the configuration for the local environment. This way, the server configuration file can be defined along with the configuration used when working in local mode.
  • 0.12.6 - A bug was found when oe attempts to change permissions on the backup_dir folder. In some cases, this folder is an S3 or OBS bucket, depending on the cloud provider. In such cases, the error is caught, and only a warning is displayed, as changing the permissions is not necessary.
  • 0.12.2 - Fix bug that prevented Python versions lower than 3.12.
  • 0.12.1 - When the -p command is run in debug mode, it pulls the debug image and performs an extract-sources; in production mode, it pulls the production image.
  • 0.12.0 - When running tests, if no database is specified, it will use the default database, which is the project name + test.
  • 0.11.7 - FIX -i is no longer removing directory packages
  • 0.11.6 - FIX --extract-sources now can remove directory packages
  • 0.11.5 - FIX --from-server does not download the database
  • 0.11.4 - FIX now can download repositories with submodules
  • 0.11.3 - Support for submodules, oe -w can write paths for a submodule structure
  • 0.10.24 - Small patch that allows to use postgres with versions greater than 10.
  • 0.10.23 - The postgres docker image is not required anymore it is not necessary. - new longpolling port exposed if declared in manifest - new parameter -E to install external dependences in manifest.py
  • 0.10.22 find manifest with exact name instaed of part of name.
  • 0.10.21 change dbtools version to 1.3.0
  • 0.10.20 fix --restore --from-server does not work when base_dir is not default
  • 0.10.19 dbtools for postgres 14.2
  • 0.10.18 ADD warning if --nginx issued and there are no nginx image on proyect
  • 0.10.16 FIX overwrite workers in odoo.conf
  • 0.10.15 base_dir parameter on oe_config.yaml
  • 0.10.14 add --extract-sources option
  • 0.10.13 fix -w to take into account submodules
  • 0.10.12 fix -w to take into account not standard repo structure and odoo.conf rights
  • 0.10.11 ask before overwriting local image sources
  • 0.10.10 minor refactoring, improving doc
  • 0.10.9 minor fixes, more documentation
  • 0.10.8 improving in writing the odoo.conf
  • 0.10.7 Fix bug creating odoo.conf missing data_dir in config.
  • 0.10.6 Fix bug creating odoo.conf when there are no config spec is manifest
  • 0.10.5 Set parameters in odoo.conf from manifest file.
  • 0.10.4 IMP creation of odoo.conf improved in V11 also.
  • 0.10.3 FIX nginx config now works behind port redirections
  • 0.10.2 FIX collision field in manifest "license"
  • 0.10.1 FIX bad filestore dir
  • 0.10.0 New manifest syntax, backward compatible.
  • 0.9.14 improved creation of odoo.conf, i.e. detect cpu number and calculate workers.
  • 0.9.13 solved bug when creating nginx config file
  • 0.9.12 Get last wdb vesion. Added a check to verify if there is a new version available in pypi. Fixed copy sources to host.
  • 0.9.11 The commands -c and --debug now are persistent.
  • 0.8.35 Workaround for mdillon gis database
  • 0.8.32 Fix issue with first time installation
  • 0.8.30 Add cache file to fix performance issues when we have more than 15 clients.
  • 0.8.29 Modify ssl certificate directories from letsencrypt, support for oca/letsencript.
  • 0.8.27 Fix compatibility issues w/ python3
  • 0.8.22 When using the options -i together with --debug, the dist_packages and extra_addons directories were created with the image sources but in read-only mode. Now we give them write permission and a git repository is added to verify if there were modifications. Option -V is added to show the version.
  • 0.8.21 Many improvements on restore database.
  • 0.8.20 When option -d not present assume database = client_name + "_prod" when option -m is not present asume default "all"
  • 0.8.19 Allow options -i and -w to work together
  • 0.8.18 add -p command
  • 0.8.17 Fix bug in python3 installation
  • 0.8.13 Removing edm option (it was a bad idea), rewrite nginx config to block /database/manager and /database/selector
  • 0.8.12 fix version of wdb image to 3.2.5, latest does not work
  • 0.8.11 Fix --nginx installation
  • 0.8.10 Add --edm option to allow database manager on production
  • 0.8.9 When installed from pip --nginx does not work
  • 0.8.8 Disable database manager on login page in prod environment
  • 0.8.7 Working on Python 2.7 to 3.7
  • 0.8.6 Fix: when installing on prod make a Shallow Clone
  • 0.8.5 Fix test (option -Q) failing to run
  • 0.8.4 PyPi version increment
  • 0.8.3 PyPi version increment
  • 0.8.2 Docker installs at the end allowing abort
  • 0.8.1 Fix starting debug mode.
  • 0.8.0 Use kozera image for wdb, write the nginx.conf with the proper client name.
  • 0.7.4 New parameter to attach to a running containcer in sd. Support for debug image in v11 (python3) data/install_scripts.sh improvements and fixes
  • 0.7.3 if odoo not in manifest do not start image instead showing an error
  • 0.7.2 start aeroo on v > 9
  • 0.7.1 Revert again go https
  • 0.7.0 Change protocol from https to ssh in order to use ssh keys.
  • 0.6.1 FIX working directory with version > 9. If odoo main version was > 9 the directory added a dot ie /odoo-10.0./
  • 0.6.0 deprecate dbfilter.
  • 0.5.4 illformed manifest causing crash
  • 0.5.3 Restore database with bad image
  • 0.5.2 sd was not copied to /usr/local/bin
  • 0.5.1 change postgres container name to pg-
  • 0.5.0 support for non github repos, i.e. bitbucket, gitlab, etc
  • 0.4.6 Odoo v10 do not run aeroo, find manifest
  • 0.4.5 Install_scripts now installs python and docker
  • 0.4.4 Do not expose 8072 when using Nginx
  • 0.4.3 No more rewriting config on update all
  • 0.4.2 Expose longpolling port in debug mode
  • 0.4.1 Fixes in test invocation
  • 0.4.0 Change QA invocation
  • 0.3.2 do not overwrite config while making QA
  • 0.3.1 Stop images instead of kill them on -s or -S
  • 0.3.0 Restore any automatic backup made with database_tools module. List all available backup files write config file add help option -H (odoo help)
  • 0.2.1 bug On QA, expose port 1984 for debug purpoes with WDB
  • 0.2.0 Quality Assurance support, Add command sd rmall for removing all docker images in memory
  • 0.1.0 Nginx support, Script to install docker (in script folder, for now you have to execute manually) sd command (short for sudo docker plus some enhacements)
  • 0.0.2 Minor fixes
  • 0.0.1 Starting project

Arquitectura

Diagrama de clases

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

odoo_env-0.16.14.tar.gz (264.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

odoo_env-0.16.14-py3-none-any.whl (100.6 kB view details)

Uploaded Python 3

File details

Details for the file odoo_env-0.16.14.tar.gz.

File metadata

  • Download URL: odoo_env-0.16.14.tar.gz
  • Upload date:
  • Size: 264.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for odoo_env-0.16.14.tar.gz
Algorithm Hash digest
SHA256 c814b0642c3a10a04559c5e9b10f8f33549a6e632fd151bed33cd42087993f47
MD5 742c0efd507c1d2a381f211edf104214
BLAKE2b-256 b599979afdc0e7e8e0b8bec4109a3ae3c6000c132c7817e560b7b6e4c4fcbdc9

See more details on using hashes here.

File details

Details for the file odoo_env-0.16.14-py3-none-any.whl.

File metadata

  • Download URL: odoo_env-0.16.14-py3-none-any.whl
  • Upload date:
  • Size: 100.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for odoo_env-0.16.14-py3-none-any.whl
Algorithm Hash digest
SHA256 fe9052f17a9bbb8713b452e9ec909d7e413baa9082774d39fe6682aa09b0538c
MD5 61ba71669925645b5d073f1b5459641e
BLAKE2b-256 866feb1f5434fdbaf21300168d139668e5f61d6a2f18f8bf2ec91ce204a0ef22

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.16.14 This release

2 files

0.16.13

2 files

0.16.10

2 files

0.16.9

2 files

0.16.8

2 files

0.16.7

2 files

0.16.6

2 files

0.16.5

2 files

0.16.4

2 files

0.16.3

2 files

0.16.2

2 files

0.16.1

2 files

0.16.0

2 files

0.15.2

2 files

0.15.1

2 files

0.15.0

2 files

0.14.3

2 files

0.13.2

2 files

0.13.1

2 files

0.12.6

2 files

0.12.5

2 files

0.12.4

2 files

0.12.3

2 files

0.12.2

2 files

0.12.1

2 files

0.12.0

2 files

0.11.7

2 files

0.11.6

2 files

0.11.5

2 files

0.11.4

2 files

0.11.3

2 files

0.11.2

2 files

0.11.1

2 files

0.10.26

2 files

0.10.25

2 files

0.10.24

3 files

0.10.23

2 files

0.10.22

2 files

0.10.21

2 files

0.10.20

3 files

0.10.18

2 files

0.10.17

2 files

0.10.16

2 files

0.10.15

3 files

0.10.14

2 files

0.10.13

2 files

0.10.12

3 files

0.10.11

3 files

0.10.10

2 files

0.10.9

2 files

0.10.8

2 files

0.10.7

2 files

0.10.6

2 files

0.10.5

2 files

0.10.4

2 files

0.10.3

2 files

0.10.2

2 files

0.10.1

3 files

0.10.0

3 files

0.9.14

2 files

0.9.13

2 files

0.9.11

2 files

0.9.10

2 files

0.9.9

2 files

0.9.8

2 files

0.9.7

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.9.0

2 files

0.8.35

2 files

0.8.34

2 files

0.8.33

2 files

0.8.32

2 files

0.8.31

2 files

0.8.30

2 files

0.8.29

2 files

0.8.28

2 files

0.8.27

2 files

0.8.26

2 files

0.8.25

2 files

0.8.24

2 files

0.8.23

2 files

0.8.22

2 files

0.8.21

2 files

0.8.20

2 files

0.8.19

2 files

0.8.18

2 files

0.8.17

2 files

0.8.16

2 files

0.8.15

2 files

0.8.14

2 files

0.8.13

2 files

0.8.12

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page