18 lines
560 B
Batchfile
Raw Normal View History

2025-08-17 12:39:20 +08:00
@echo off
chcp 65001 >nul
title Simulation Quick Start
if exist "%SIMULATION_MANAGE_BIN%" (
start "Simulation Server" cmd /k "chcp 65001 && title Simulation Server && java -Dspring.profiles.active=test,mysql,redis,rocketmq,springdoc %SIMULATION_VM_PARAMS% -jar %SIMULATION_MANAGE_BIN%"
)
if exist "%SIMULATION_MANAGE_BIN%" (
cd %SIMULATION_MAIN%\web
start "Simulation Website" cmd /k "title Simulation Website && simulation-web.exe -c conf/web.conf"
)
2025-08-17 12:42:38 +08:00
echo Simulation:
echo - SimulationServer (Port: 28280)
echo - SimulationWebsite (Port: 18280)
2025-08-17 12:39:20 +08:00
pause