加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
entrypoint.sh 350 Bytes
一键复制 编辑 原始数据 按行查看 历史
Such 提交于 2024-12-12 17:11 . feat:APP_PORT(#619)
#!/bin/bash
for file in /iptv-api-config/*; do
filename=$(basename "$file")
target_file="$APP_WORKDIR/config/$filename"
if [ ! -e "$target_file" ]; then
cp -r "$file" "$target_file"
fi
done
. /.venv/bin/activate
service cron start &
python $APP_WORKDIR/main.py &
python -m gunicorn service.app:app -b 0.0.0.0:$APP_PORT --timeout=1000
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化