first commit

This commit is contained in:
2026-05-21 16:44:31 +08:00
commit 7dbc5542de
99 changed files with 47743 additions and 0 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