11 lines
221 B
Bash
11 lines
221 B
Bash
#!/bin/bash
|
|
# 世界杯预测系统启动脚本
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# 安装依赖
|
|
pip3 install -r backend/requirements.txt -q
|
|
|
|
# 启动服务
|
|
echo "Starting World Cup Predictor on port 16015..."
|
|
python3 backend/app.py |