You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great boilerplate. Got me starting fast on a bigger project. Unfortunately the docs are not very detailed. A lot of things I needed to research or did not get it yet.
1. Environment variables
How do you manage environment variables? In the webpack config you included .env in the plugin section. As well you include the serverless-kms-secrets plugin. How do you manage that?
2. Workflow
A description of a typical workflow would be helpful. Here is mine.
Create a new function incl. a test and two HTTP endpoints / Ref: https://github.com/nordcloud/serverless-mocha-plugin sls create function -f myFunction --handler functions/myFunction/index.handler --httpEvent "post myResource" --httpEvent "get myResource"
Great boilerplate. Got me starting fast on a bigger project. Unfortunately the docs are not very detailed. A lot of things I needed to research or did not get it yet.
1. Environment variables
How do you manage environment variables? In the webpack config you included .env in the plugin section. As well you include the serverless-kms-secrets plugin. How do you manage that?
2. Workflow
A description of a typical workflow would be helpful. Here is mine.
sls install -u https://github.com/nordcloud/serverless-boilerplate -n myservicename
sls create function -f myFunction --handler functions/myFunction/index.handler --httpEvent "post myResource" --httpEvent "get myResource"
sls logs -f myFunctionName --startTime 10m -t
SLS_DEBUG=true sls invoke local -f functionName -p functions/calculateMatch/match.json --watch
sls deploy --stage dev
The text was updated successfully, but these errors were encountered: