Files
YG_FT_Platform/src/run.sh
2026-01-18 19:51:22 +08:00

15 lines
289 B
Bash

#!/bin/bash
# 启动远光软件微调平台后端服务
cd "$(dirname "$0")"
# 检查并安装依赖
if ! python3 -c "import flask" 2>/dev/null; then
echo "正在安装依赖..."
pip install -r ../requirements.txt
fi
# 启动服务
echo "启动后端服务..."
python3 main.py