Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tariel-x/wsk-examples

Collection of example go functions for apache openwhisk
https://github.com/tariel-x/wsk-examples

example go openwhisk

Last synced: about 13 hours ago
JSON representation

Collection of example go functions for apache openwhisk

Awesome Lists containing this project

README

        

# OpenWhisk golang examples

This is the collection of example golang functions for OpenWhisk.

Before using, check that wsk is configured correctly:

Run at host: `wsk property get --auth | cut -c13-` to obtain auth key.

At local: `wsk -i property set --apihost 0.0.0.0 --auth KEY --namespace guest`, where `KEY` is the result from the host.

Test at local: `wsk -i namespace get`.

## Content

1. [Hello world](hello)
2. [Hello world standalone binary](hello-standalone)
3. [Deploy sequences with wskdeploy](wskdeploy)
4. [Implement own action loop](actionloop)
5. [Multiple files in main package](multifile)
6. [Actionloop with subpackage](actionloop-multifile)
7. [Actionloop and vendors without vendor folder](vendoring)