Add server folder

This commit is contained in:
Alex Dima
2021-10-20 18:42:13 +02:00
parent fc504f3af3
commit 822f995357
46 changed files with 5165 additions and 25 deletions

View File

@@ -0,0 +1,24 @@
@echo off
setlocal
set ROOT_DIR=%~dp0
set _FIRST_ARG=%1
if "%_FIRST_ARG:~0,9%"=="--inspect" (
set INSPECT=%1
shift
) else (
set INSPECT=
)
:loop1
if "%~1"=="" goto after_loop
set RESTVAR=%RESTVAR% %1
shift
goto loop1
:after_loop
"%ROOT_DIR%node.exe" %INSPECT% "%ROOT_DIR%out\vs\server\main.js" %RESTVAR%
endlocal