sam: add page (#2779)

italian
Tyler Moon 2019-02-16 09:16:52 -05:00 committed by Starbeamrainbowlabs
parent b6c67e093c
commit 89a8a1477b
1 changed files with 28 additions and 0 deletions

28
pages/linux/sam.md Normal file
View File

@ -0,0 +1,28 @@
# sam
> AWS Serverless Application Model (SAM) CLI.
> Homepage: <https://github.com/awslabs/aws-sam-cli>.
- Initialize a serverless application:
`sam init`
- Initialize a serverless application with a specific runtime:
`sam init --runtime {{python3.7}}`
- Package a SAM application:
`sam package`
- Build your Lambda function code:
`sam build`
- Run your serverless application locally:
`sam local start-api`
- Deploy an AWS SAM application:
`sam deploy`