我正在尝试在Heroku服务器上提供godoc -http =:[端口]
我在Heroku日志中遇到以下错误
bash: godoc: command not found
我的Procfile看起来像:
web: godoc -http=:$PORT
我试图通过将以下行添加到Procfile来安装godoc
release: go get -u golang.org/x/tools/cmd/godoc
注意:我正在使用Go模块
答案 0 :(得分:0)
在使用go模块时,我在go.mod文件中添加了以下行以安装godoc工具
// +heroku install golang.org/x/tools/cmd/godoc