Skip to content

Commit

Permalink
Add version 14 and 15
Browse files Browse the repository at this point in the history
Signed-off-by: Luis Valdes <luis@valdes.com.br>
  • Loading branch information
kavichu committed Oct 2, 2023
1 parent 1faca3c commit 5ab5326
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ odoo_env_vars=(
ODOO_DATABASE_NAME
ODOO_DATABASE_USER
ODOO_DATABASE_PASSWORD
ODOO_DATABASE_FILTER
SMTP_HOST
SMTP_PORT
ODOO_SMTP_PORT
Expand Down Expand Up @@ -94,6 +95,7 @@ export ODOO_LONGPOLLING_PORT_NUMBER="${ODOO_LONGPOLLING_PORT_NUMBER:-8072}" # on
export ODOO_SKIP_BOOTSTRAP="${ODOO_SKIP_BOOTSTRAP:-no}" # only used during the first initialization
export ODOO_SKIP_MODULES_UPDATE="${ODOO_SKIP_MODULES_UPDATE:-no}" # only used during the first initialization
export ODOO_LOAD_DEMO_DATA="${ODOO_LOAD_DEMO_DATA:-no}" # only used during the first initialization
export ODOO_DATABASE_FILTER="${ODOO_DATABASE_FILTER:-.*}"

# Odoo credentials
export ODOO_EMAIL="${ODOO_EMAIL:-user@example.com}" # only used during the first initialization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ db_port = {{ODOO_DATABASE_PORT_NUMBER}}
; https://www.postgresql.org/docs/current/manage-ag-templatedbs.html
db_template = template1
db_user = {{ODOO_DATABASE_USER}}
dbfilter = .*
dbfilter = {{ODOO_DATABASE_FILTER}}
debug_mode = False
email_from = {{ODOO_EMAIL}}
http_port = {{ODOO_PORT_NUMBER}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ odoo_env_vars=(
ODOO_DATABASE_NAME
ODOO_DATABASE_USER
ODOO_DATABASE_PASSWORD
ODOO_DATABASE_FILTER
SMTP_HOST
SMTP_PORT
ODOO_SMTP_PORT
Expand Down Expand Up @@ -94,6 +95,7 @@ export ODOO_LONGPOLLING_PORT_NUMBER="${ODOO_LONGPOLLING_PORT_NUMBER:-8072}" # on
export ODOO_SKIP_BOOTSTRAP="${ODOO_SKIP_BOOTSTRAP:-no}" # only used during the first initialization
export ODOO_SKIP_MODULES_UPDATE="${ODOO_SKIP_MODULES_UPDATE:-no}" # only used during the first initialization
export ODOO_LOAD_DEMO_DATA="${ODOO_LOAD_DEMO_DATA:-no}" # only used during the first initialization
export ODOO_DATABASE_FILTER="${ODOO_DATABASE_FILTER:-.*}"

# Odoo credentials
export ODOO_EMAIL="${ODOO_EMAIL:-user@example.com}" # only used during the first initialization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ db_port = {{ODOO_DATABASE_PORT_NUMBER}}
; https://www.postgresql.org/docs/current/manage-ag-templatedbs.html
db_template = template1
db_user = {{ODOO_DATABASE_USER}}
dbfilter = .*
dbfilter = {{ODOO_DATABASE_FILTER}}
debug_mode = False
email_from = {{ODOO_EMAIL}}
http_port = {{ODOO_PORT_NUMBER}}
Expand Down

0 comments on commit 5ab5326

Please sign in to comment.