Compare commits

..

1 Commits

Author SHA1 Message Date
74c2b1b7e7 Hair Keeper v1.2.0版本更新
修复性:
* nextjs升级到\~15.4.10

新功能:
* 支持在开发容器内快速部署(默认绑定8000端口)
* 开发者面板页面git工具支持推送远程仓库
* 新增多步表单控件
* 新增开发容器工具:dnsutils
* 新增Hair Keeper开发容器使用帮助
2026-02-04 16:32:52 +08:00
3 changed files with 6 additions and 9 deletions

View File

@@ -96,12 +96,10 @@ RUN curl -fsSL https://code-server.dev/install.sh | sh -s -- --version=${CODE_SE
# 安装 npm 全局包
RUN npm install -g \
@anthropic-ai/claude-code \
@musistudio/claude-code-router \
pm2
# 安装 claude code
RUN curl -fsSL https://claude.ai/install.sh | bash
# 创建工作目录
RUN mkdir -p /workspace /root/.local/share/code-server/User

View File

@@ -346,7 +346,6 @@ EOF
"api_base_url": "${PKUAI_API_BASE}api/anthropic/v1/messages",
"api_key": "${PKUAI_API_KEY}",
"models": [
"claude-opus-4-6",
"claude-sonnet-4-5-20250929",
"claude-opus-4-5-20251101",
"claude-haiku-4-5-20251001"
@@ -369,13 +368,13 @@ EOF
}
},
"Router": {
"default": "pku-anthropic,claude-opus-4-6",
"default": "pku-anthropic,claude-opus-4-5-20251101",
"background": "pku-anthropic,claude-haiku-4-5-20251001",
"think": "pku-anthropic,claude-opus-4-6",
"longContext": "pku-anthropic,claude-opus-4-6",
"think": "pku-anthropic,claude-opus-4-5-20251101",
"longContext": "pku-anthropic,claude-opus-4-5-20251101",
"longContextThreshold": 80000,
"webSearch": "",
"image": "pku-anthropic,claude-opus-4-6"
"image": "pku-anthropic,claude-opus-4-5-20251101"
},
"CUSTOM_ROUTER_PATH": ""
}

View File

@@ -20,7 +20,7 @@ TEMP_DIR=$(mktemp -d)
trap "rm -rf $TEMP_DIR" EXIT
# 复制必要文件
cp -r .next-prod $TEMP_DIR/
cp -r .next $TEMP_DIR/
cp -r public $TEMP_DIR/
cp -r prisma $TEMP_DIR/
cp package.json $TEMP_DIR/