28 lines
1,002 B
Text
28 lines
1,002 B
Text
#version Trytond server example 6.0
|
|
TRYTOND_VERSION="6.0"
|
|
#python version that will run the docker example 3.7 or 3.9 is mandatory in case you use tryton6.2
|
|
PYTHON_VERSION="3.7"
|
|
#if the module repository is private
|
|
GITEA_USER=""
|
|
GITEA_PASSWORD=""
|
|
GITEA_ACCESS_TOKEN=""
|
|
#domain server gitea
|
|
GITEA_DOMAIN="git.disroot.org"
|
|
URL_MULTI_MIGRATE="https://${GITEA_USER}:${GITEA_PASSWORD}@git.disroot.org/OneTeam/oc-docker-tryton-non-official.git"
|
|
#By default all organizations are set to false, activate only one.
|
|
#Gnuhealth, Etrivial, Trytonar, OneTeam, OneTeam_Pos, Presik, Datalife, NaNtic, Kalenis
|
|
Provider="Kalenis"
|
|
DIR_MODULES="/usr/local/lib/python${PYTHON_VERSION}/dist-packages/trytond/modules"
|
|
DB_PASSWORD="SUp3r-pass*DB"
|
|
POSTGRES_DB="tryton"
|
|
DB_HOSTNAME="db"
|
|
POSTGRES_PASSWORD="SUp3r-pass*DB"
|
|
TRYTON_PORT="8000"
|
|
DEVELOP="True"
|
|
WORKER="True"
|
|
TRYTONPASSFILE="/etc/trytond_admin_pass.conf"
|
|
#Password user admin
|
|
TRYTONADMINPASS="admin"
|
|
#Email user admin
|
|
EMAIL="admin@admin.com"
|
|
SLEEP_TRYTOND_ADMIN=15
|