Add FastAPI admin/public API service, database setup, Docker deployment files, docs, and tests.
26 lines
679 B
Markdown
26 lines
679 B
Markdown
# 后台 API 服务
|
|
|
|
`WonderQ-Admin` 当前是独立的 Python + FastAPI API 服务,使用 PostgreSQL 保存业务数据,通过 Docker Compose 启动 `api`、`postgres` 和 `redis`。
|
|
|
|
## 本地 API 启动
|
|
|
|
```bash
|
|
python -m venv .venv
|
|
.venv\Scripts\activate
|
|
pip install -r requirements.txt
|
|
docker compose up -d postgres redis
|
|
alembic upgrade head
|
|
python -m app.seed
|
|
uvicorn app.main:app --host 0.0.0.0 --port 4000 --reload
|
|
```
|
|
|
|
健康检查:`http://localhost:4000/health`
|
|
|
|
## 前端联调
|
|
|
|
后台管理前端位于 `D:\www\znkj\WonderQ-Admin-UI`。如需连接本服务,在前端 `.env` 或环境变量中配置:
|
|
|
|
```text
|
|
VITE_API_BASE_URL="http://localhost:4000"
|
|
```
|