Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
megatrump
/
clash-sub-test
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e14d22f
clash-sub-test
/
start.sh
megatrump
test
b2ab624
2 months ago
raw
Copy download link
history
blame
Safe
270 Bytes
#!/bin/bash
# 后台运行 tail 进程
cd
/app/tool/subconverter && ./subconverter >> /app/subconverter.log 2>&1 &
# 运行 uvicorn 应用
uv run uvicorn app:asgi_app --host 0.0.0.0 --port 7860
# (可选) 等待 tail 进程结束,但它通常不会结束
# wait $!