mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
23 lines
338 B
Markdown
23 lines
338 B
Markdown
# Administrator 管理手册
|
|
|
|
## 环境
|
|
|
|
### 安装组件
|
|
|
|
1. python环境
|
|
确保安装python3.6+
|
|
|
|
2. python的pip包fastapi,uvicorn[standard],gunicorn
|
|
|
|
```
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
3. 安装docker以及docker compose、创建docker 网络websoft9
|
|
|
|
### 启动
|
|
|
|
```
|
|
uvicorn main:get_app --host 0.0.0.0 --port 5000 --reload
|
|
```
|