Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 989 Bytes

README.md

File metadata and controls

61 lines (47 loc) · 989 Bytes

demo

Python 3.9

init

sam init --runtime python3.9 --dependency-manager pip --name python --app-template hello-world

build and deploy

cd python
sam build --use-container && sam deploy --profile personal --no-confirm-changeset

test

cd python
curl -w "@../curl-format.txt" <API_URL>

Node 20

init

sam init --runtime nodejs20.x --dependency-manager npm --name node --app-template hello-world

build and deploy

cd node
sam build --use-container && sam deploy --profile personal --no-confirm-changeset

test

cd node
curl -w "@../curl-format.txt" <API_URL>

Java 21

init

cd java
sam init --runtime java21 --dependency-manager maven --name java --app-template hello-world

build and deploy

cd java
sam build --use-container && sam deploy --profile personal --no-confirm-changeset

test

cd java
curl -w "@../curl-format.txt" <API_URL>