- Makefile show version, switch version and install different version - erplibre_version with odoo_version, poetry_version and python_version - support multiple docker version - support odoo 12, odoo 14, odoo 16 - bullseye, bookworm debian - update latest version - script update_env_version to detect actual version and refactor it - adapt file path to support multiple version - poetry with verbose by default, ignore python keyring - python script to generate image db with parallel for all odoo version - check_addons_exist before generate all image - support delay to change queue parallel - fix odoo 12 product configurator - can show demo website - swith odoo - force create addons if missing - update manifest, because gen config break with wrong manifest
21 lines
552 B
Bash
Executable file
21 lines
552 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
. ./env_var.sh
|
|
|
|
#EL_MANIFEST_PROD="./default.xml"
|
|
#EL_MANIFEST_DEV="./manifest/default.dev.xml"
|
|
|
|
# Update git-repo
|
|
git daemon --base-path=. --export-all --reuseaddr --informative-errors --verbose &
|
|
DAEMON_PID=$!
|
|
|
|
if [ -L "$EL_MANIFEST_DEV" ]; then
|
|
MANIFEST_TARGET=$(readlink -f "$EL_MANIFEST_DEV")
|
|
else
|
|
MANIFEST_TARGET="$EL_MANIFEST_DEV"
|
|
fi
|
|
|
|
./.venv/repo init -u git://127.0.0.1:9418/ -b $(git rev-parse --verify HEAD) -m ${MANIFEST_TARGET} -g base,code_generator
|
|
./.venv/repo sync -v -m ${MANIFEST_TARGET}
|
|
|
|
kill ${DAEMON_PID}
|