forked from userbot000/otzaria-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-server.bat
More file actions
34 lines (29 loc) · 1.36 KB
/
test-server.bat
File metadata and controls
34 lines (29 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@echo off
chcp 65001 >nul
echo.
echo ╔════════════════════════════════════════════════════════════╗
echo ║ בדיקת שרת המרת PDF ║
echo ╚════════════════════════════════════════════════════════════╝
echo.
echo [1/2] בודק אם השרת רץ...
echo.
curl -s http://localhost:5000/health >nul 2>&1
if %errorlevel% equ 0 (
echo ✅ השרת רץ!
echo.
echo פרטי השרת:
curl -s http://localhost:5000/health
echo.
echo.
echo ╔════════════════════════════════════════════════════════════╗
echo ║ השרת פעיל ומוכן לשימוש ║
echo ╚════════════════════════════════════════════════════════════╝
) else (
echo ❌ השרת לא רץ!
echo.
echo להפעלת השרת, הרץ:
echo start-converter-server.bat
echo.
)
echo.
pause