Merge pull request #117 from aka7774/master

Add Server.bat
This commit is contained in:
litagin02
2024-04-22 21:39:57 +09:00
committed by GitHub

11
Server.bat Normal file
View File

@@ -0,0 +1,11 @@
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