-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathstart.bat
More file actions
72 lines (63 loc) · 1.75 KB
/
start.bat
File metadata and controls
72 lines (63 loc) · 1.75 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
@echo off
setlocal enabledelayedexpansion
cd /d "%~dp0"
REM -------- MasterHttpRelayVPN one-click launcher (Windows) --------
REM Creates a local virtualenv, installs deps, runs the setup wizard
REM if needed, then starts the proxy.
set "VENV_DIR=.venv"
set "PY="
where py >nul 2>&1
if %errorlevel%==0 (
set "PY=py -3"
) else (
where python >nul 2>&1
if %errorlevel%==0 (
set "PY=python"
)
)
if "%PY%"=="" (
echo [X] Python 3.10+ was not found on PATH.
echo Install from https://www.python.org/downloads/ and re-run this script.
pause
exit /b 1
)
if not exist "%VENV_DIR%\Scripts\python.exe" (
echo [*] Creating virtual environment in %VENV_DIR% ...
%PY% -m venv "%VENV_DIR%"
if errorlevel 1 (
echo [X] Failed to create virtualenv.
pause
exit /b 1
)
)
set "VPY=%VENV_DIR%\Scripts\python.exe"
echo [*] Installing dependencies ...
"%VPY%" -m pip install --disable-pip-version-check -q --upgrade pip >nul
"%VPY%" -m pip install --disable-pip-version-check -q -r requirements.txt
if errorlevel 1 (
echo [!] PyPI install failed. Retrying via runflare mirror ...
"%VPY%" -m pip install --disable-pip-version-check -q -r requirements.txt ^
-i https://mirror-pypi.runflare.com/simple/ ^
--trusted-host mirror-pypi.runflare.com
if errorlevel 1 (
echo [X] Could not install dependencies.
pause
exit /b 1
)
)
if not exist "config.json" (
echo [*] No config.json found — launching setup wizard ...
"%VPY%" setup.py
if errorlevel 1 (
echo [X] Setup cancelled.
pause
exit /b 1
)
)
echo.
echo [*] Starting MasterHttpRelayVPN ...
echo.
"%VPY%" main.py %*
set "RC=%errorlevel%"
if not "%RC%"=="0" pause
exit /b %RC%