docs: 添加产品参数爬取系统和Git仓库创建规范

This commit is contained in:
2026-04-10 01:10:17 +08:00
parent 7c11b8fff0
commit a572ebbb71
2 changed files with 26 additions and 0 deletions

View File

@@ -51,6 +51,30 @@ git push origin vX.X.X
- 密码: Hps123@! - 密码: Hps123@!
- URL编码: Hps123%40%21 - URL编码: Hps123%40%21
### 创建Git仓库新项目必须 ⭐⭐⭐
**新项目必须先用API创建仓库再推送代码**
```bash
# 1. 用API创建仓库
curl -s -X POST "http://coder:Hps123%40%21@192.168.2.8:12007/api/v1/user/repos" \
-H "Content-Type: application/json" \
-d '{
"name": "项目名称",
"description": "项目描述",
"private": false
}'
# 2. 添加远程仓库
git remote add origin http://coder:Hps123%40%21@192.168.2.8:12007/coder/项目名称.git
# 3. 推送代码和tag
git push -u origin master
git push origin v1.0.0
```
**不需要在网页上手动创建直接用API创建**
### 可用的大模型 ### 可用的大模型
| 名称 | 地址 | 模型 | | 名称 | 地址 | 模型 |

View File

@@ -287,6 +287,8 @@ ls -lh /home/xian/.openclaw/common/stock_system/data/stock_daily_data.parquet
| ParamHub Node | http://192.168.2.8:12007/coder/param-hub | v0.2.0 | | ParamHub Node | http://192.168.2.8:12007/coder/param-hub | v0.2.0 |
| ParamHub Python | http://192.168.2.8:12007/coder/param-hub-python | v0.3.1 | | ParamHub Python | http://192.168.2.8:12007/coder/param-hub-python | v0.3.1 |
| LLM Index RAG | http://192.168.2.8:12007/coder/llm-index-rag | v1.2.0 | | LLM Index RAG | http://192.168.2.8:12007/coder/llm-index-rag | v1.2.0 |
| LLM Proxy | http://192.168.2.8:12007/coder/llm-proxy | v0.4.0 |
| 产品参数爬取系统 | http://192.168.2.8:12007/coder/product-crawler | v1.0.0 |
| 网页助手插件 | http://192.168.2.8:12007/coder/web-context-extension | v0.1.0 | | 网页助手插件 | http://192.168.2.8:12007/coder/web-context-extension | v0.1.0 |
| A股历史数据系统 | http://192.168.2.8:12007/coder/stock_system | v0.2.0 | | A股历史数据系统 | http://192.168.2.8:12007/coder/stock_system | v0.2.0 |