shell
shell copied to clipboard
An Electron-based development tool for IBM Cloud Functions and Composer.
I'm trying the documented example [here](https://github.com/apache/incubator-openwhisk/blob/master/docs/apigateway.md), substituting `fsh` for `wsk`: Step 3 output: ```js > fsh api create /hello /world get hello --response-type json https://openwhisk/api/v1/web/guest/hello.json ok: updated action hello ```...
this will give us windows coverage. the biggest work here probably will be figuring out how to run a local openwhisk on windows. it is possible, but our current tools/travis/setup.sh...
after 65c46832f4b114d27092cfd60c23a62fc3ec674d, where we started building against a dist build, the codecov numbers dropped; we probably aren't instrumenting the dist builds properly
Right now, our Travis config only tests on Linux. travis-ci.org supports macOS testing, as well. https://docs.travis-ci.com/user/multi-os/ https://docs.travis-ci.com/user/reference/osx/ e.g. ```yaml os: - linux - osx ```
i created an action which failed to deploy (controller misconfiguration) but no error was given in the shell; inspecting the console logs showed `Uncaught (in promise) OpenWhiskError` with a meaningful...
might be nice to have a trash can and delete an api right from the list
an action not created in the shell will not generate badges: create a java action in the shell: `action create j1 ~/projects/openwhisk/tests/dat/actions/helloJava.jar --main m` but create the same action from...
notice hovering on the text under the icon it turns blue, suggesting it's clickable (css style says so too) but there's no link defined... Should perhaps do the same as...
If you create a new action `hello.py`, the `.py` is just treated as part of the name of the action and the type of action will be node. To override...