Actualiser 0.variables.env
This commit is contained in:
parent
2321d717e5
commit
8c6445f67b
1 changed files with 20 additions and 7 deletions
|
|
@ -1,10 +1,23 @@
|
|||
# Variables Generales
|
||||
ODOO_CONTAINER=odoo-V18-mercier
|
||||
POSTGRES_CONTAINER=postgres-5455-mercier
|
||||
POSTGRESQL_PORT=5455
|
||||
POSTGRESQL_DB_NAME=mercier
|
||||
# Chemin vers odoo.conf (peut être relatif au dossier du script)
|
||||
ODOO_CONFIG_FILE=./odoo.conf
|
||||
# ═══════════════════════════════════════════════════════════════
|
||||
# 0.variables.env - USINE_APPLICATIONS
|
||||
# ═══════════════════════════════════════════════════════════════
|
||||
# ── Identite du projet ────────────────────────────────────────
|
||||
export CLIENT=mercier
|
||||
export ODOO_VERSION=18
|
||||
|
||||
# ── PostgreSQL ────────────────────────────────────────────────
|
||||
export POSTGRES_PORT=5455
|
||||
export POSTGRES_DB="${CLIENT}"
|
||||
export POSTGRES_USER=odoo
|
||||
export POSTGRES_PASSWORD=odoo
|
||||
export POSTGRES_CONTAINER="postgres-${POSTGRES_PORT}-${CLIENT}"
|
||||
|
||||
# ── Odoo ──────────────────────────────────────────────────────
|
||||
export ODOO_HTTP_PORT=18069
|
||||
export ODOO_CONTAINER="odoo-V${ODOO_VERSION}-${CLIENT}"
|
||||
|
||||
# ── Chemins ───────────────────────────────────────────────────
|
||||
export ODOO_CONFIG_FILE=./odoo.conf
|
||||
|
||||
# Filestore (bind mount relatif OK, résolu en absolu par le script)
|
||||
ODOO_FILESTORE_PATH=./odoo-filestore
|
||||
|
|
|
|||
Loading…
Reference in a new issue