Update API and WebSocket base URLs to use environment variables for better configuration management

This commit is contained in:
liu
2026-01-30 00:45:04 +08:00
parent 197ce5e7ea
commit 246515b43e
11 changed files with 310 additions and 2 deletions

15
docker/stop.bat Normal file
View File

@@ -0,0 +1,15 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
echo 正在停止 MangTool 容器...
docker compose down
if errorlevel 1 (
echo ❌ 停止失败
pause
exit /b 1
)
echo ✅ 已停止并删除容器
pause