This commit is contained in:
Oleg Sheynin 2025-04-05 21:49:03 -04:00
parent e898d0c8e4
commit 235b906a94
3 changed files with 0 additions and 3 deletions

View File

@ -18,6 +18,5 @@ ACGW_LOG_FILE=%T.ac_gateway.log
ACGW_ADD_ARGS= ACGW_ADD_ARGS=
# PXER_CONFIG_FILE=config_musvc.cfg # PXER_CONFIG_FILE=config_musvc.cfg
# PXER_CREDS_FILE=.creds
PXER_LOG_FILE=%T.pricer.log PXER_LOG_FILE=%T.pricer.log
PXER_ADD_ARGS= PXER_ADD_ARGS=

View File

@ -8,7 +8,6 @@ services:
environment: environment:
CONFIG_SERVICE: ${CONFIG_SERVICE:-cloud16.cvtt.vpn:6789} CONFIG_SERVICE: ${CONFIG_SERVICE:-cloud16.cvtt.vpn:6789}
PXER_CONFIG_FILE: ${PXER_CONFIG_FILE:-cvtt_musvc.cfg} PXER_CONFIG_FILE: ${PXER_CONFIG_FILE:-cvtt_musvc.cfg}
PXER_CREDS_FILE: ${PXER_CREDS_FILE:-.creds}
PXER_LOG_FILE: ${PXER_LOG_FILE:-%T.pricer.log} PXER_LOG_FILE: ${PXER_LOG_FILE:-%T.pricer.log}
PXER_ADD_ARGS: ${PXER_ADD_ARGS:-} PXER_ADD_ARGS: ${PXER_ADD_ARGS:-}
volumes: volumes:

View File

@ -6,7 +6,6 @@ LogDir=/logs
Cmd="python3.12" Cmd="python3.12"
Cmd+=" cvttpy/apps/microservices/pricer/pricer.py" Cmd+=" cvttpy/apps/microservices/pricer/pricer.py"
Cmd+=" --config=${ConfigDir}/${PXER_CONFIG_FILE:-cvtt_musvc.cfg}" Cmd+=" --config=${ConfigDir}/${PXER_CONFIG_FILE:-cvtt_musvc.cfg}"
Cmd+=" --credentials_file=${ConfigDir}/${PXER_CREDS_FILE:-.creds}"
Cmd+=" --log_file=${LogDir}/${PXER_LOG_FILE:-%T.pricer.log}" Cmd+=" --log_file=${LogDir}/${PXER_LOG_FILE:-%T.pricer.log}"
Cmd+=" ${PXER_ADD_ARGS}" Cmd+=" ${PXER_ADD_ARGS}"
echo ${Cmd} echo ${Cmd}