Sprint 1 release
Update README.md
1 file changed
tree: ae1e5c96c4749ff828307e838f892e1fd8529af5
  1. cmd/
  2. examples/
  3. Godeps/
  4. specification/
  5. tests/
  6. utils/
  7. wski18n/
  8. .gitignore
  9. .travis.yml
  10. Dockerfile
  11. LICENSE
  12. main.go
  13. Makefile
  14. README.md
README.md

Whisk Deploy wskdeploy

wskdeploy is a utility to help you create and deploy OpenWhisk projects. Deploy all your actions, triggers, and rules using a single command! You can use this in addition to the OpenWhisk CLI.

wskdeploy is currenty under development and in its very early stages. Check back often to see how its progressing.

How to Build

wskdeploy is written in Go.

  1. Setup your Go development environment.

  2. wskdeploy depends on the github.com/openwhisk/openwhisk-client-go/whisk . To install:

go get github.com/openwhisk/openwhisk-client-go/whisk

  1. Clone this repo into $GOPATH/src/github.com/openwhisk, which should have been created by Step #2.
$ cd $GOPATH/src/github.com/openwhisk
$ git clone http://github.com/openwhisk/wskdeploy
  1. Tagged releases are in master. The latest build is always in the development branch. Inside $GOPATH/src/github.com/openwhisk/wskdeply:
$ git checkout development   ## or skip this step and just build master
$ go build