包含 FastAPI 应用、Nginx 反向代理配置、systemd 服务及腾讯云 pip 源配置。 Co-authored-by: Cursor <cursoragent@cursor.com>
4 lines
94 B
Bash
Executable File
4 lines
94 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
exec ./venv/bin/uvicorn app:app --host 127.0.0.1 --port 8000
|