shell
shell copied to clipboard
fsh app commands should not rely on low-level wsk.ow
in order for the project plugin to work with apps, the fsh app commands should use the shell commands (e.g wsk action create)
the way it's currently implemented, the app code is in-memory. There are at least 2 solutions:
- serialize it and call
wsk action create/update name app.js - extend wsk action to support inline code , eg:
wsk action create/update name code --inline
maybe the second one is best?