Files
sbv2-v2/Server.bat
2024-04-16 14:52:03 +09:00

11 lines
193 B
Batchfile

chcp 65001 > NUL
@echo off
pushd %~dp0
echo Running server_fastapi.py
venv\Scripts\python server_fastapi.py
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% )
popd
pause