feat 移动服务器发布工具

This commit is contained in:
2025-12-13 18:41:57 +08:00
parent bc656247c9
commit 6e19d93f5e
10 changed files with 22 additions and 90 deletions

View File

@@ -0,0 +1,19 @@
@echo off
call ./build-all.bat
echo.
rd /s /q gateway
xcopy ..\..\..\Server\gateway\config\config.prod.yaml gateway\config\ >nul
xcopy ..\..\..\Server\gateway\Dockerfile gateway\ >nul
move ..\..\..\Server\server-gateway gateway\ >nul
echo [INFO] Copy gateway finished.
rd /s /q scene
xcopy ..\..\..\Server\scene\config\config.prod.yaml scene\config\ >nul
xcopy ..\..\..\Server\scene\Dockerfile scene\ >nul
move ..\..\..\Server\server-scene scene\ >nul
echo [INFO] Copy scene finished.
echo.
pause