docs: 添加产品参数爬取系统和Git仓库创建规范
This commit is contained in:
24
MEMORY.md
24
MEMORY.md
@@ -51,6 +51,30 @@ git push origin vX.X.X
|
||||
- 密码: Hps123@!
|
||||
- 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创建!**
|
||||
|
||||
### 可用的大模型
|
||||
|
||||
| 名称 | 地址 | 模型 |
|
||||
|
||||
@@ -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 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 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 |
|
||||
| A股历史数据系统 | http://192.168.2.8:12007/coder/stock_system | v0.2.0 |
|
||||
|
||||
|
||||
Reference in New Issue
Block a user