37 lines
880 B
Markdown
37 lines
880 B
Markdown
# Ozon Seller Kit
|
||
|
||
Ozon 上品辅助工具:计价、登记、图片水印、俄文文案生成。
|
||
前后端同仓一体:FastAPI 托管 `web/` 静态页并提供 `/api/*`。
|
||
|
||
## 目录
|
||
|
||
```
|
||
ozon-seller-kit/
|
||
├── main.py
|
||
├── config/ # settings + models.yaml
|
||
├── api/
|
||
├── services/
|
||
├── schemas/
|
||
├── web/
|
||
├── docs/
|
||
├── start.command
|
||
├── requirements.txt
|
||
└── .env.example
|
||
```
|
||
|
||
## 快速开始
|
||
|
||
**推荐:双击 `start.command`**,或:
|
||
|
||
```bash
|
||
./start.command
|
||
```
|
||
|
||
打开:http://127.0.0.1:8000/ozonSeller.html
|
||
|
||
- 密钥写在根目录 `.env`(参考 `.env.example`)
|
||
- 可选模型写在 `config/models.yaml`(页面下拉会自动读取)
|
||
|
||
部署与启动详见 [`docs/deployment.md`](docs/deployment.md)。
|
||
文案方案设计见 [`docs/ai-copy-backend-plan.md`](docs/ai-copy-backend-plan.md)。
|