DocSpace-buildtools/build.bat

27 lines
515 B
Batchfile
Raw Permalink Normal View History

2023-10-02 10:23:37 +00:00
@echo off
echo "##########################################################"
echo "######### Start build and deploy #######################"
echo "##########################################################"
echo.
PUSHD %~dp0
call runasadmin.bat "%~dpnx0"
if %errorlevel% == 0 (
call start\stop.bat nopause
echo "FRONT-END (for start run command 'yarn start' inside the root folder)"
call build.frontend.bat nopause
echo "BACK-END"
call build.backend.bat nopause
call start\start.bat nopause
echo.
pause
2019-09-03 11:12:19 +00:00
)