Files
server/run_services_min_onecmd.bat
Alexey.Golubev bc3a8ea8df CoAuthoring -> DocService
git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/nodeJSProjects@64979 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-18 10:38:05 +03:00

23 lines
491 B
Batchfile

SET RUN_DIR=%CD%
call "%RUN_DIR%\install_npm_modules.bat"
@IF NOT "%ERRORLEVEL%"=="0" goto ERROR
SET NODE_ENV=development-windows
SET NODE_CONFIG_DIR=%RUN_DIR%\Common\config
cd "%RUN_DIR%\DocService\sources"
start /min /b node server.js
cd "%RUN_DIR%\FileConverter\sources"
start /min /b node convertermaster.js
cd "%RUN_DIR%\FileStorage\sources"
start /min /b node server.js
cd "%RUN_DIR%\SpellChecker\sources"
start /min /b node server.js
:ERROR
:SUCCESS
pause