Spaces:
Running
Running
File size: 154 Bytes
b310def |
1 2 3 4 5 6 7 8 |
#!/bin/bash
# 设置API认证Token
export API_TOKEN="your-secret-token-here"
# 启动FastAPI服务
python -m uvicorn api:app --host 0.0.0.0 --port 8000
|