Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ MonkeyCode 是一个开源的 AI 编程助手,旨在通过智能代码补全
使用 root 权限登录你的服务器,然后执行以下命令。

```bash
bash -c "$(curl -fsSLk https://release.baizhi.cloud/monkeycode/install.sh)"
bash -c "$(curl -fsSLk https://release.baizhi.cloud/monkeycode/manager.sh)"
```

根据命令提示的选项进行安装,命令执行过程将会持续几分钟,请耐心等待。
Expand Down
6 changes: 5 additions & 1 deletion backend/config/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
debug: true
{{- if eq .ENABLE_PUBLIC_ACCESS "true" -}}
base_url: http://{{.LOCAL_IP}}:{{.NGINX_PORT}}
{{- else -}}
base_url: http://{{.REMOTE_IP}}:{{.NGINX_PORT}}
{{- end -}}

logger:
level: info
server:
Expand Down
Loading