sam init --runtime python3.9 --dependency-manager pip --name python --app-template hello-world
cd python
sam build --use-container && sam deploy --profile personal --no-confirm-changeset
cd python
curl -w "@../curl-format.txt" <API_URL>
sam init --runtime nodejs20.x --dependency-manager npm --name node --app-template hello-world
cd node
sam build --use-container && sam deploy --profile personal --no-confirm-changeset
cd node
curl -w "@../curl-format.txt" <API_URL>
cd java
sam init --runtime java21 --dependency-manager maven --name java --app-template hello-world
cd java
sam build --use-container && sam deploy --profile personal --no-confirm-changeset
cd java
curl -w "@../curl-format.txt" <API_URL>