- 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
29 lines
1,001 B
Bash
Executable file
29 lines
1,001 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ERPLIBRE_VERSION="1.5.0"
|
|
|
|
EL_USER="erplibre"
|
|
EL_HOME="/${EL_USER}"
|
|
EL_HOME_ERPLIBRE="${EL_HOME}/erplibre"
|
|
EL_HOME_ODOO="${EL_HOME_ERPLIBRE}/odoo"
|
|
EL_ODOO_VERSION=$(cat ".odoo-version" | xargs)
|
|
EL_POETRY_VERSION=$(cat ".poetry-version" | xargs)
|
|
EL_PYTHON_VERSION=$(cat ".python-version" | xargs)
|
|
EL_ERPLIBRE_VERSION=$(cat ".erplibre-version" | xargs)
|
|
# The default port where this Odoo instance will run under (provided you use the command -c in the terminal)
|
|
# Set to true if you want to install it, false if you don't need it or have it already installed.
|
|
EL_INSTALL_WKHTMLTOPDF="True"
|
|
# Set the default Odoo port
|
|
EL_PORT="8069"
|
|
EL_LONGPOLLING_PORT="8072"
|
|
# set the superadmin password
|
|
EL_SUPERADMIN="admin"
|
|
EL_CONFIG="${EL_USER}"
|
|
EL_MINIMAL_ADDONS="False"
|
|
# Set this to True if you want to install Nginx!
|
|
EL_INSTALL_NGINX="False"
|
|
# Set the website name
|
|
EL_WEBSITE_NAME="localhost"
|
|
EL_GITHUB_TOKEN=""
|
|
EL_MANIFEST_PROD="./default.xml"
|
|
EL_MANIFEST_DEV="./manifest/default.dev.xml"
|