Hi
I’m still playing with the Serverless framework, to see what it’s able to do.
I created a project with the CLI, for the Google Cloud Platform.
It comes with a simple function named first .
I was able to deploy it to the Cloud Platform, and able to invoke it with the command:
serverless invoke --function first
But when I tried to invoke it local, with the command:
serverless invoke local -f first
It returns nothing:
I’m following the Docs here: link
Is it because it’s a http request?
There’s another example of a function that could work local, just to test?