4

我正在尝试在 Heroku 服务器上提供 godoc -http=:[port]

我在 Heroku 日志中收到以下错误

bash: godoc: command not found

我的 Procfile 看起来像:

web: godoc -http=:$PORT

我尝试通过将以下行添加到 Procfile 来安装 godoc

release: go get -u golang.org/x/tools/cmd/godoc

注意:我正在使用 Go 模块

4

1 回答 1

0

当我使用 go 模块时,我将以下行添加到我的 go.mod 文件中以安装 godoc 工具

// +heroku install golang.org/x/tools/cmd/godoc
于 2020-06-29T00:00:33.353 回答