shell icon indicating copy to clipboard operation
shell copied to clipboard

An Electron-based development tool for IBM Cloud Functions and Composer.

Results 90 shell issues
Sort by recently updated
recently updated
newest added

(**note**: this issue pertains to doing an npm install from github, not from the prebuilt binaries stored on npmjs.com i.e. `@ibm-functions/shell`) running `npm install -g --verbose starpit/shell` takes 2 minutes...

platform-linux
platform-windows
installation

they get stuck sometimes when i click on a wskflow node to drill down to an action

bug
wskflow

note how this line pulls out just the last action: https://github.com/ibm-functions/shell-composer-plugin/blob/master/lib/composer.js#L479 we need to deploy all actions. here is a test case: https://github.com/ibm-functions/composer/blob/master/samples/demo.js

enhancement

I had some app activations last week, when I clicked on them from the grid, I wasn;t presented with options to view the `trace` or `session flow`. It seemed to...

Note the error message that's printed... in any case, per `wsk` the positional argument is supported for filtering. ``` > fsh api list "/club" { isUsageError: true, name: "UsageError", message:...

apigw

Continuing in the tutorial https://github.com/apache/incubator-openwhisk/blob/master/docs/apigateway.md#exporting-the-configuration to export swagger ``` > fsh api get "/club" Cannot convert undefined or null to object ``` Needed to diverge from tutorial `s/Book Club/\/club/`, see...

apigw

the `wsk` cli supports a `-f` parameter on `api list`: ``` > wsk api list -h list APIs Usage: wsk api list [[BASE_PATH | API_NAME] [API_PATH [API_VERB]] [flags] Flags: -f,...

apigw

Trying to follow the book API example https://github.com/apache/incubator-openwhisk/blob/master/docs/apigateway.md#exposing-multiple-web-actions ``` > fsh api create -n "Book Club" /club /books/{isbn} get getBooks --response-type http API creation failure: The action must use a...

apigw

following the steps [here](https://github.com/apache/incubator-openwhisk/blob/master/docs/apigateway.md), substituting `fsh` for `wsk`: under *Full control over the HTTP response*: ``` > fsh api create /hello /world get hello --response-type http https://openwhisk/api/v1/web/guest/hello.json ok: updated action...

apigw