added ssh deploy

This commit is contained in:
2026-07-28 15:33:07 +03:00
parent 6644fd07c1
commit e7996a15ed
38 changed files with 18797 additions and 46 deletions
+27
View File
@@ -0,0 +1,27 @@
@echo off
cd /d "%~dp0"
if not exist config.json (
echo [error] Не найден config.json. Скопируйте config.example.json в config.json и заполните его.
pause
exit /b 1
)
where python >nul 2>&1
if %ERRORLEVEL%==0 (
python mass_deploy.py config.json
goto :done
)
where py >nul 2>&1
if %ERRORLEVEL%==0 (
py -3 mass_deploy.py config.json
goto :done
)
echo [error] Python 3 не найден. Установите с https://www.python.org/downloads/
echo и отметьте "Add python.exe to PATH".
pause
exit /b 1
:done
pause