This commit is contained in:
user123
2026-01-30 01:13:35 +08:00
parent 2747d23dfe
commit 9927adf716
2 changed files with 7 additions and 1 deletions

View File

@@ -10,6 +10,12 @@ bash <(curl -sSL https://raw.githubusercontent.com/sky22333/shell/main/moltbot/i
下载后双击运行 下载后双击运行
支持环境变量配置代理域名(已默认配置)
```
# PowerShell系统级管理员
setx GIT_PROXY "https://g.blfrp.cn/" /M
```
如果你选择跳过设置TG机器人启动后可以访问ClawdBot内置的Web面板进行对话`http://127.0.0.1:18789` 如果你选择跳过设置TG机器人启动后可以访问ClawdBot内置的Web面板进行对话`http://127.0.0.1:18789`
### 构建(可选) ### 构建(可选)

View File

@@ -735,7 +735,7 @@ func runInstallFlowCmd() tea.Msg {
} }
func tickCmd() tea.Cmd { func tickCmd() tea.Cmd {
return tea.Tick(2*time.Second, func(t time.Time) tea.Msg { return tea.Tick(1*time.Second, func(t time.Time) tea.Msg {
return tickMsg(t) return tickMsg(t)
}) })
} }