@echo off
|
|
@REM change to the filepath
|
cd %~dp0
|
cd ..
|
|
set aerialpython=%cd%/env/aerial_deploy/python.exe
|
set envsetting=%cd%/env/SettingEnv.bat
|
|
@REM Setting the env
|
if not exist %aerialpython% (
|
call %envsetting%
|
)
|
cd %~dp0
|
cd ..
|
|
echo change to path: %cd%
|
|
set MQhost=172.17.17.206
|
set MQuser=chai
|
set MQpassword=password123
|
set QUEUEname=aerial_rpc
|
set DEVICEname=pod1
|
set SERVERhost=http://172.17.17.206/api
|
set MICROWAVEhost=192.168.2.65
|
set LOGfile=Client.log
|
|
@REM Launch the Client
|
echo the log file will be saved in the [%LOGfile%] file
|
echo Client.py is running ...
|
@REM -------- Usage: Client.py [MQhost] [MQuser] [MQpassword] [QUEUEname] [DEVICEname] [SERVERhost] [MICROWAVEhost]
|
%aerialpython% ./src/Client.py %MQhost% %MQuser% %MQpassword% %QUEUEname% %DEVICEname% %SERVERhost% %MICROWAVEhost% >> %LOGfile%
|
echo Client.py has been terminited.
|
pause
|