AWS SAM Demonstration for serverless web service implementation in monorepo microservice architecture with multiple languages.
You can get deep insight into Serverless and Infrastructure as Code. And you can also follow the practice courses below
AWS SAM을 활용한 서버리스 웹 서비스의 구현 (1) - SAM에서 모노레포 마이크로서비스 환경 구축하기
AWS SAM을 활용한 서버리스 웹 서비스의 구현 (2) - SAM에서 확장 CloudFormation으로 IaC 설정하기
AWS SAM을 활용한 서버리스 웹 서비스의 구현 (3) - SAM에서 웹 백엔드 서비스 개발하고 배포하기
Coming soon . . .
sam init
ㄴ initializes SAM application
sam local generate-event apigateway aws-proxy > events/apigw-event.json
ㄴ generates SAM local event
sam local invoke -e events/apigw-event.json
ㄴ invokes local lambda function with event
sam local start-api
ㄴ starts local api that imitates Lambda
sam deploy --guided
ㄴ deploys with guidance
sam validate
ㄴ validates the template
sam pipeline init --bootstrap
ㄴ creates pipeline
sam sync --stack-name {stack-name} --watch
ㄴ tests functions in cloud

