Skip to content

jbuberel/example_gb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example project using the gb tool

This project was configured to use http://getgb.io/ as the build tool replacement and vendoring approach.

  • External packages are vendored in a way that does not require import path rewriting.
  • The application can no longer be built with go build.
  • The replacement gb tool ignores the $GOPATH variable
  • The gb build command will find all src directories in the sub-tree.

To build this app:

$ mkdir gb
$ cd gb
$ export GOPATH=`pwd`
$ go get github.com/constabulary/gb/...
$ export GOBIN=$GOPATH/bin
$ export PATH=$GOBIN:$PATH
$ go install github.com/constabulary/gb/...

You should now hav a gb command in the $GOPATH/bin directory, and on your command $PATH. You can now remove the gb sources:

$ rm -rf src/github.com/constabulary

Next, fetch this repository into a fresh directory and build it with the gb command:

$ cd $HOME
$ git clone https://github.com/jbuberel/example_gb
$ cd example_gb
$ gb buid all

To deploy this app on Google App Engine

First, make sure you have an account and have defined a project:

Execute the following commands from the directory contiaining the app.yaml file:

$ gcloud auth login
$ gcloud config set project <your-project-name>
$ gcloud preview app deploy --version myapp ./app.yaml --remote
$ curl myapp.<your-project-name>.appspot.com

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages