16 lines
507 B
Batchfile
16 lines
507 B
Batchfile
@echo off
|
|
set PYTHONUTF8=1
|
|
cd /d "%~dp0"
|
|
powershell -NoProfile -Command "Start-Process -FilePath 'runtime\python\python.exe' -WindowStyle Hidden -ArgumentList 'scripts\start_server.py'"
|
|
ping -n 4 127.0.0.1 >nul 2>&1
|
|
if exist .server_pid (
|
|
set /p PID=<.server_pid
|
|
echo TianXuan started. PID: %PID%
|
|
echo Visit: http://127.0.0.1:8000/
|
|
echo To stop: taskkill /F /PID %PID%
|
|
) else (
|
|
echo TianXuan started.
|
|
echo Visit: http://127.0.0.1:8000/
|
|
echo To stop: taskkill /F /IM python.exe
|
|
)
|