Heroku golang 示例应用程序失败

标签 heroku github go

我正在按照文档 getting-started-with-go 在 heroku 上创建示例应用程序

直到第 3 步第一次部署 ( deploy-the-app )

在 ( push-local-changes ) 添加依赖项时问题开始

执行的命令

go version
heroku login
go get github.com/heroku/go-getting-started/cmd/...
cd %GOPATH%/src/github.com/heroku/go-getting-started
git remote -v
heroku create
git push heroku master
heroku open
heroku ps:scale web=1

go get -u github.com/tools/godep
godep restore
go get -u github.com/russross/blackfriday

notepad Godeps/Godeps.json
notepad cmd\go-getting-started\main.go
godep save ./...


go install ./...
heroku local

git add -A .
git commit -m "Markdown demo dependency"
git push heroku master
heroku open mark

输出

Microsoft Windows [Version 10.0.10240]
(c) 2015 Microsoft Corporation. All rights reserved.

C:\Windows\system32>go version
go version go1.6 windows/amd64

C:\Windows\system32>heroku login
Enter your Heroku credentials.
Email: 01.mandar@gmail.com
Password (typing will be hidden):
Logged in as 01.mandar@gmail.com

C:\Windows\system32>go get github.com/heroku/go-getting-started/cmd/...

C:\Windows\system32>cd %GOPATH%/src/github.com/heroku/go-getting-started

c:\Go\src\github.com\heroku\go-getting-started>git remote -v
origin  https://github.com/heroku/go-getting-started (fetch)
origin  https://github.com/heroku/go-getting-started (push)

c:\Go\src\github.com\heroku\go-getting-started>heroku create
Creating app... done, stack is cedar-14
https://lit-lake-35772.herokuapp.com/ | https://git.heroku.com/lit-lake-35772.git

c:\Go\src\github.com\heroku\go-getting-started>git push heroku master
Counting objects: 353, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (225/225), done.
Writing objects: 100% (353/353), 203.07 KiB | 0 bytes/s, done.
Total 353 (delta 70), reused 353 (delta 70)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Go app detected
remote: -----> Checking Godeps/Godeps.json file.
remote: -----> Installing go1.6... done
remote: -----> Running: go install -v -tags heroku ./...
remote: github.com/heroku/go-getting-started/vendor/gopkg.in/bluesuncorp/validator.v5
remote: github.com/heroku/go-getting-started/vendor/github.com/gin-gonic/gin/render
remote: github.com/heroku/go-getting-started/vendor/github.com/manucorporat/sse
remote: github.com/heroku/go-getting-started/vendor/github.com/mattn/go-colorable
remote: github.com/heroku/go-getting-started/vendor/golang.org/x/net/context
remote: github.com/heroku/go-getting-started/vendor/github.com/gin-gonic/gin/binding
remote: github.com/heroku/go-getting-started/vendor/github.com/mattn/go-isatty
remote: github.com/heroku/go-getting-started/vendor/github.com/gin-gonic/gin
remote: github.com/heroku/go-getting-started/cmd/go-getting-started
remote: -----> Discovering process types
remote:        Procfile declares types -> web
remote:
remote: -----> Compressing...
remote:        Done: 3.1M
remote: -----> Launching...
remote:        Released v3
remote:        https://lit-lake-35772.herokuapp.com/ deployed to Heroku
remote:
remote: Verifying deploy... done.
To https://git.heroku.com/lit-lake-35772.git
 * [new branch]      master -> master

c:\Go\src\github.com\heroku\go-getting-started>heroku open

c:\Go\src\github.com\heroku\go-getting-started>go get -u github.com/tools/godep

c:\Go\src\github.com\heroku\go-getting-started> godep restore

c:\Go\src\github.com\heroku\go-getting-started>
c:\Go\src\github.com\heroku\go-getting-started>go get -u github.com/russross/blackfriday

c:\Go\src\github.com\heroku\go-getting-started>notepad Godeps/Godeps.json

c:\Go\src\github.com\heroku\go-getting-started>notepad cmd\go-getting-started\main.go

c:\Go\src\github.com\heroku\go-getting-started>godep save ./...

c:\Go\src\github.com\heroku\go-getting-started>notepad Godeps/Godeps.json

c:\Go\src\github.com\heroku\go-getting-started>
c:\Go\src\github.com\heroku\go-getting-started>go install ./...

c:\Go\src\github.com\heroku\go-getting-started>heroku local
[OKAY] Loaded ENV .env File as KEY=VALUE Format
[OKAY] Trimming display Output to 98 Columns
10:01:41 AM web.1 |  [GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
10:01:41 AM web.1 |   - using env:      export GIN_MODE=release
10:01:41 AM web.1 |   - using code:     gin.SetMode(gin.ReleaseMode)
10:01:41 AM web.1 |  [GIN-debug] GET   /static/*filepath         --> github.com/heroku/go-getting-started/vendor/github…
10:01:41 AM web.1 |  [GIN-debug] HEAD  /static/*filepath         --> github.com/heroku/go-getting-started/vendor/github…
10:01:41 AM web.1 |  [GIN-debug] GET   /mark                     --> main.main.func1 (2 handlers)
10:01:41 AM web.1 |  [GIN-debug] Listening and serving HTTP on :5000
10:01:56 AM web.1 |  [GIN] 2016/04/08 - 10:01:56 | 404 |             0 | [::1]:50713 |   GET     /
10:02:15 AM web.1 |  [GIN] 2016/04/08 - 10:02:15 | 200 |             0 | [::1]:50714 |   GET     /mark
[WARN] Interrupted by User
[DONE] Killing all processes with signal  SIGINT
10:02:32 AM web.1 Exited Abnormally
Terminate batch job (Y/N)? y

c:\Go\src\github.com\heroku\go-getting-started>git add -A .
warning: LF will be replaced by CRLF in Godeps/Godeps.json.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in Godeps/Readme.
The file will have its original line endings in your working directory.

c:\Go\src\github.com\heroku\go-getting-started>git commit -m "Markdown demo dependency"
[master warning: LF will be replaced by CRLF in Godeps/Godeps.json.
The file will have its original line endings in your working directory.
44f22d6] Markdown demo dependency
warning: LF will be replaced by CRLF in Godeps/Godeps.json.
The file will have its original line endings in your working directory.
 12 files changed, 5500 insertions(+), 7 deletions(-)
 create mode 100644 vendor/github.com/russross/blackfriday/.gitignore
 create mode 100644 vendor/github.com/russross/blackfriday/.travis.yml
 create mode 100644 vendor/github.com/russross/blackfriday/LICENSE.txt
 create mode 100644 vendor/github.com/russross/blackfriday/README.md
 create mode 100644 vendor/github.com/russross/blackfriday/block.go
 create mode 100644 vendor/github.com/russross/blackfriday/html.go
 create mode 100644 vendor/github.com/russross/blackfriday/inline.go
 create mode 100644 vendor/github.com/russross/blackfriday/latex.go
 create mode 100644 vendor/github.com/russross/blackfriday/markdown.go
 create mode 100644 vendor/github.com/russross/blackfriday/smartypants.go

c:\Go\src\github.com\heroku\go-getting-started>git push heroku master
Counting objects: 21, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (17/17), done.
Writing objects: 100% (21/21), 39.28 KiB | 0 bytes/s, done.
Total 21 (delta 3), reused 9 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Using set buildpack heroku/go
remote: -----> Go app detected
remote: -----> Checking Godeps/Godeps.json file.
remote: -----> Using go1.6
remote: -----> Running: go install -v -tags heroku ./...
remote: vendor/github.com/russross/blackfriday/block.go:19:2: cannot find package "github.com/shurcooL/sanitized_anchor_name" in any of:
remote:         /tmp/build_36053c1b0568bf24dcdcf90c103b1104/.heroku/go/src/github.com/heroku/go-getting-started/vendor/github.com/shurcooL/sanitized_anchor_name (vendor tree)
remote:         /app/tmp/cache/go1.6/go/src/github.com/shurcooL/sanitized_anchor_name (from $GOROOT)
remote:         /tmp/build_36053c1b0568bf24dcdcf90c103b1104/.heroku/go/src/github.com/shurcooL/sanitized_anchor_name (from $GOPATH)
remote:
remote:  !     Push rejected, failed to compile Go app
remote:
remote: Verifying deploy....
remote:
remote: !       Push rejected to lit-lake-35772.
remote:
To https://git.heroku.com/lit-lake-35772.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/lit-lake-35772.git'

c:\Go\src\github.com\heroku\go-getting-started>heroku open mark

c:\Go\src\github.com\heroku\go-getting-started>

最佳答案

我不知道为什么您的命令不起作用,但问题是目录 vendor/github.com/shurcooL/sanitized_anchor_name 没有提交给您的 Git 存储库。命令 godep save ./... 应该将该 repo 添加到 Godeps/Godeps.json 并将它们的文件添加到 vendor/,并且命令 git add -A . 应该已经添加了它们。但出于某种原因,它们没有添加到您的提交中。

尝试再次运行 godep save ./... 并确保存储库 github.com/shurcooL/sanitized_anchor_name 已添加到您的本地 vendor/。然后,像您已经执行的那样运行 git addgit commitgit push。它应该工作:-)

关于Heroku golang 示例应用程序失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36492006/

相关文章:

Go Gorilla Websockets ~ 在 ping/pong 失败(用户断开连接)时调用函数?

go - 我如何等待对多个其他 Goroutines 的单个 Goroutine 响应?

go - 执行大量 I/O 的 go 程序崩溃

mysql - Rails 和 Heroku : How to add records to database?

ruby-on-rails - 如何确定在Heroku Performance dyno上运行的Puma worker 和线程的正确数量?

ruby - Heroku Postgres 连接上限为 5/20

github - 我可以使用逻辑运算符 OR 搜索 github 标签吗?

Node.js + Mongoose 在本地工作,但不能在 Heroku 上工作

github - Capistrano 错误 : Repository not found

GitHub:使用机器人阅读 PR 并对该内容进行操作