This repository has been archived on 2026-01-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Game/Public/Publish/Server/publish.bat

19 lines
500 B
Batchfile

@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