15 lines
383 B
Bash
Executable File
15 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ConfigDir=/config
|
|
LogDir=/logs
|
|
|
|
Cmd="python3.12"
|
|
Cmd+=" cvttpy/apps/microservices/market_gateways/order_entry_gateway.py"
|
|
Cmd+=" --config=${ConfigDir}/${OEGW_CONFIG_FILE:-cvtt_musvc.cfg}"
|
|
Cmd+=" --credentials_file=${ConfigDir}/${OEGW_CREDS_FILE:-.creds}"
|
|
Cmd+=" --log_file=${LogDir}/${OEGW_LOG_FILE:-%T.oe_gateway.log}"
|
|
Cmd+=" ${OEGW_ADD_ARGS}"
|
|
echo ${Cmd}
|
|
exec ${Cmd}
|
|
|