@echo off chcp 65001 echo 正在启动 Python 后端服务... echo. python -m uvicorn lover.main:app --host 0.0.0.0 --port 30101 --reload pause