Ai_GirlFriend/启动Python服务.bat

9 lines
146 B
Batchfile
Raw Permalink Normal View History

2026-03-02 18:57:11 +08:00
@echo off
chcp 65001
echo 正在启动 Python 后端服务...
echo.
python -m uvicorn lover.main:app --host 0.0.0.0 --port 30101 --reload
pause