Go 版本的 ChattyAI
软件架构说明
- 安装最新版的 Go SDK,要求 > 1.11 版本 (安装最新版就行了)
- 设置环境变量
GO111MODULE
将其设置为on
或auto
- 如果嫌网速慢,可设置代理
GOPROXY
为https://goproxy.io,direct
,提高下载速度
在 Go version > 1.13 时,可以通过以下方式配置
go env -w GOPROXY=https://goproxy.io,direct
go env -w GO111MODULE=on
- xxxx
- xxxx
- xxxx
- Clone 本仓库
- 新建 feature_xxx 分支
- 提交代码
- 新建 mr 到 release 分支
linux
rm -rf dist/chattyai-go-linux
GOOS=linux GOARCH=amd64 go build -o dist/chattyai-go-linux main.go
windows
mac
rm dist/chattyai-go-mac
go build -o dist/chattyai-go-mac main.go