clash-sub-test / start.sh
megatrump's picture
test
849d277
raw
history blame
335 Bytes
#!/bin/bash
# 后台运行 tail 进程
cd /app/tools && tar -xf subconverter_linux64.tar.gz
cd /app/tools/subconverter && ./subconverter >> /app/subconverter.log 2>&1 &
# 运行 uvicorn 应用
cd /app && uv run uvicorn app:asgi_app --host 0.0.0.0 --port 7860
# (可选) 等待 tail 进程结束,但它通常不会结束
# wait $!