2020-06-22 22:36:54 -04:00
|
|
|
#!/usr/bin/env bash
|
2020-04-13 00:06:13 -04:00
|
|
|
|
2022-10-05 03:13:01 -04:00
|
|
|
ERPLIBRE_VERSION="1.4.0"
|
2020-09-11 00:15:49 -04:00
|
|
|
|
2020-06-22 22:36:54 -04:00
|
|
|
EL_USER="erplibre"
|
|
|
|
|
EL_HOME="/${EL_USER}"
|
|
|
|
|
EL_HOME_ERPLIBRE="${EL_HOME}/erplibre"
|
|
|
|
|
EL_HOME_ODOO="${EL_HOME_ERPLIBRE}/odoo"
|
2020-04-13 00:06:13 -04:00
|
|
|
# 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.
|
2020-06-22 22:36:54 -04:00
|
|
|
EL_INSTALL_WKHTMLTOPDF="True"
|
|
|
|
|
# Set the default Odoo port
|
|
|
|
|
EL_PORT="8069"
|
|
|
|
|
EL_LONGPOLLING_PORT="8072"
|
2020-04-13 00:06:13 -04:00
|
|
|
# set the superadmin password
|
2020-06-22 22:36:54 -04:00
|
|
|
EL_SUPERADMIN="admin"
|
|
|
|
|
EL_CONFIG="${EL_USER}"
|
|
|
|
|
EL_MINIMAL_ADDONS="False"
|
2020-04-13 00:06:13 -04:00
|
|
|
# Set this to True if you want to install Nginx!
|
2021-09-28 01:23:58 -04:00
|
|
|
EL_INSTALL_NGINX="False"
|
2020-04-13 00:06:13 -04:00
|
|
|
# Set the website name
|
2021-07-20 02:56:14 -04:00
|
|
|
EL_WEBSITE_NAME="localhost"
|
2020-06-22 22:36:54 -04:00
|
|
|
EL_GITHUB_TOKEN=""
|
2020-07-06 23:08:05 -04:00
|
|
|
EL_MANIFEST_PROD="./default.xml"
|
2020-06-22 22:36:54 -04:00
|
|
|
EL_MANIFEST_DEV="./manifest/default.dev.xml"
|