14 lines
290 B
Bash
Executable File
14 lines
290 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ConfigDir=/config
|
|
LogDir=/logs
|
|
|
|
Cmd="python3.12"
|
|
Cmd+=" cvttpy/apps/microservices/pricer/pricer.py"
|
|
Cmd+=" --config=${ConfigDir}/${PXER_CONFIG_FILE:-cvtt_musvc.cfg}"
|
|
Cmd+=" --log_file=${LogDir}/${PXER_LOG_FILE:-%T.pricer.log}"
|
|
Cmd+=" ${PXER_ADD_ARGS}"
|
|
echo ${Cmd}
|
|
exec ${Cmd}
|
|
|