mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-04-07 14:04:35 +08:00
git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/nodeJSProjects@64979 954022d7-b5bf-4e40-9824-e11837661b57
23 lines
491 B
Batchfile
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 |