增加一键部署脚本

This commit is contained in:
dekun
2026-05-21 11:45:49 +08:00
parent 2301590a97
commit 39815c1df6
20 changed files with 3426 additions and 2931 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
chcp 65001 >nul
setlocal
cd /d "%~dp0"
echo crypto_monitor 一键环境部署 ...
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0deploy\setup_env.ps1" %*
set ERR=%ERRORLEVEL%
if not "%ERR%"=="0" (
echo.
echo 部署失败,退出码 %ERR%
pause
exit /b %ERR%
)
echo.
pause
exit /b 0