19 lines
423 B
Batchfile
19 lines
423 B
Batchfile
@echo off
|
|
|
|
call ../build-all.bat
|
|
echo.
|
|
|
|
rd /s /q gateway
|
|
xcopy ..\gateway\config\config.prod.yaml gateway\config\ >nul
|
|
xcopy ..\gateway\Dockerfile gateway\ >nul
|
|
move ..\server-gateway gateway\ >nul
|
|
echo [INFO] Copy gateway finished.
|
|
|
|
rd /s /q scene
|
|
xcopy ..\scene\config\config.prod.yaml scene\config\ >nul
|
|
xcopy ..\scene\Dockerfile scene\ >nul
|
|
move ..\server-scene scene\ >nul
|
|
echo [INFO] Copy scene finished.
|
|
|
|
echo.
|
|
pause |