cloud-function-nodejs-samples
cloud-function-nodejs-samples copied to clipboard
SAP Cloud Platform Functions samples written in Node.JS
In the index.js ``` module.exports = function(event, context) { const rv = context.getSecretValueJSON('my-new-sec', 'rv.json'); return rv.Info.Success; }; ``` has to be changed to this ``` module.exports = async function(event, context)...
Hi Im trying to deploy qrcode project. On my terminal, Im at `qrcode-producer` folder and trying to deploy the project using below command. `/Users/i302342/Documents/scp-serverless-runtime/xfsrt-cli faas project deploy -y ./deploy/values.yaml -v...