@echo off
|
|
@REM change to the filepath
|
cd %~dp0
|
echo change to path: %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
|
echo change to path: %cd%
|
|
set MQhost=172.17.17.206
|
set MQuser=chai
|
set MQpassword=password123
|
set QUEUEname=aerial_rpc
|
set WEBport=5000
|
set SAVEfolder=./Images
|
set LOGfile=Server.log
|
|
@REM Launch the Server
|
echo the log file will be saved in the [%LOGfile%] file
|
echo Server.py is running ...
|
@REM -------- Usage: Server.py [MQhost] [MQuser] [MQpassword] [QUEUEname] [WEBport] [SAVEfolder]")
|
%aerialpython% ./src/Server.py %MQhost% %MQuser% %MQpassword% %QUEUEname% %WEBport% %SAVEfolder% >> >> %LOGfile%
|
echo Server.py has been terminited.
|
pause
|