duandaishi9268 2016-04-08 05:12
浏览 84

Heroku Golang示例应用程序失败

I am creating sample application on heroku as per documentation getting-started-with-go

It works till Step 3 the first deployment (deploy-the-app)

Problem starts when dependency are added at (push-local-changes)

Commands Executed

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

Output

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>
  • 写回答

1条回答 默认 最新

  • duanbimo7212 2016-04-08 13:02
    关注

    I don't know why your commands didn't work but the problem is that the directory vendor/github.com/shurcooL/sanitized_anchor_name wasn't committed to your Git repo. The command godep save ./... should have added that repo to Godeps/Godeps.json and their files to vendor/, and the command git add -A . should have added them. But for some reason, they weren't added to your commit.

    Try to run godep save ./... again and make sure the repository github.com/shurcooL/sanitized_anchor_name is added to your local vendor/. Then, run git add, git commit and git push as you already did. It should work :-)

    评论

报告相同问题?

悬赏问题

  • ¥15 使用C#,asp.net读取Excel文件并保存到Oracle数据库
  • ¥15 C# datagridview 单元格显示进度及值
  • ¥15 thinkphp6配合social login单点登录问题
  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配