Skip to content

A sample Go application to deploy to Cloud Foundry using dep

License

Notifications You must be signed in to change notification settings

swisscom/cf-sample-app-go-dep

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cf-sample-app-go-dep

A sample Go application to deploy to Cloud Foundry using dep

This basic example uses a custom router and serves 2 endpoints /health and / it uses the environment var VERSION defined in the manifest.yml the one later is returned when querying the /health endpoint.

The application has the following structure:

|-- app
|     `--hello
|       `--hello.go
|-- health.go
|-- main.go
`-- manifest.yml

How to use it

Install and set your GO environment

For example using $HOME/go for your workspace

$ export GOPATH=$HOME/go

Create the directory:

$ mkdir -p $HOME/go/src/github.com/swisscom

Clone project into that directory:

$ git clone https://github.com/swisscom/cf-sample-app-go-dep.git $HOME/go/src/github.com/swisscom/cf-sample-app-go-dep

git is required to clone the repository.

To test the app locally before deploying it in to app-cloud, build it by just typing make:

$ cd $HOME/go/src/github.com/swisscom/cf-sample-app-go-dep
$ make

After make finishes you can run the app:

$ ./cf-sample-app-go-dep
2018/07/06 13:39:12 Adding path: /health [ALL]
2018/07/06 13:39:12 Adding path: / [ALL]

This steps requires dep

Visit http://localhost:8080

Deploying the app to app-cloud

If you tested locally, remove the vendor directory or simply use:

$ make clean

Then just use:

$ cf push

About

A sample Go application to deploy to Cloud Foundry using dep

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published