5 lines
134 B
Bash
5 lines
134 B
Bash
#!/bin/bash
|
|
# 启动 ViGent2 后端 (FastAPI)
|
|
cd "$(dirname "$0")/backend"
|
|
./venv/bin/uvicorn app.main:app --host 0.0.0.0 --port 8006
|