-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
36 lines (31 loc) · 916 Bytes
/
Copy pathstart.bat
File metadata and controls
36 lines (31 loc) · 916 Bytes
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
35
36
@echo off
title Iron Tunnel Host v10
color 0A
cls
echo ════════════════════════════════════════════════════════
echo IRON TUNNEL HOST v10.0 - Secure AI Gateway
echo ════════════════════════════════════════════════════════
echo.
echo [SYSTEM] Checking Python...
python --version >nul 2>&1
if %errorlevel% neq 0 (
color 0C
echo.
echo [ERROR] Python not found!
echo.
echo Install Python 3.10+ from python.org
echo Make sure to check "Add Python to PATH"
echo.
pause
exit
)
echo [SYSTEM] Starting host...
echo.
python iron_host.py
if %errorlevel% neq 0 (
color 0C
echo.
echo [ERROR] Host crashed. See error above.
echo.
pause
)