what does it do?
.
├── README.md
├── event.json
├── response.json
├── script
│ ├── create-bucket
│ ├── deploy
│ └── package
├── src
│ ├── __tests__
│ │ └── unit
│ │ └── test-handler.js
│ ├── index.js
│ └── package.json
└── template.yaml- AWS CLI already configured with Administrator permission
- NodeJS 8.10+ installed
- Docker installed
. script/buildBy default, this command writes built artifacts to .aws-sam/build folder.
. script/invokeIf you need to create the bucket for this package...
. script/create-bucketRun the following command to package our Lambda function to S3:
. script/packageNext, the following command will create a Cloudformation Stack and deploy your SAM resources.
. script/deployjest