Files
NBATransfer/NBATransfer-backend/启动后端.bat
2025-12-14 15:40:49 +08:00

29 lines
616 B
Batchfile
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
chcp 65001 >nul
title Nano Banana API - 启动后端服务
cd /d "%~dp0NBATransfer-backend"
if not exist ".env" (
echo ❌ 错误:未找到 .env 配置文件
echo 请先运行 一键安装.bat 或手动复制 .env.example 为 .env
pause
exit /b 1
)
echo.
echo ============================================
echo 🍌 Nano Banana API - 后端服务
echo ============================================
echo.
echo 启动后端服务...
echo.
echo 📍 访问地址http://localhost:5000
echo 📍 API 文档:查看 README.md
echo.
echo 按 Ctrl+C 停止服务
echo.
python app.py
pause