Files
YG_FT_Platform/src/run.sh

17 lines
416 B
Bash
Raw Normal View History

2026-01-11 13:26:23 +08:00
#!/bin/bash
2026-01-18 19:51:22 +08:00
# 启动远光软件微调平台后端服务
2026-01-11 13:26:23 +08:00
2026-01-18 19:51:22 +08:00
cd "$(dirname "$0")"
2026-01-11 13:26:23 +08:00
2026-01-18 19:51:22 +08:00
# 检查并安装依赖
if ! python3 -c "import flask" 2>/dev/null; then
echo "正在安装依赖..."
pip install -r ../requirements.txt
2026-01-11 13:26:23 +08:00
fi
2026-01-18 19:51:22 +08:00
# 启动服务
echo "启动后端服务..."
nohup python3 main.py &
# 日志会写入 logs/ 目录,同时输出到 stdoutDocker 日志可见)
echo "后端服务已在后台启动"