Example on how to run locally an AWS Lambda via API Gateway using localstack.
Based on...
| #! /bin/bash | |
| PB_VERSION=2.5.0 | |
| set -e | |
| apt-get update | |
| apt-get install build-essential wget | |
| wget https://github.com/google/protobuf/releases/download/v$PB_VERSION/protobuf-$PB_VERSION.tar.gz |
Example on how to run locally an AWS Lambda via API Gateway using localstack.
Based on...