Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 584 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 584 Bytes

sample-lambda

Simple AWS Lambda which has one endpoint

To deploy using serverless, use the following command:

serverless deploy --stage local --region us-east-1

After deploy completes, you should see a message in output like this:

✔ Service deployed to stack sample-app-local (28s)

endpoint: http://localhost:4566/restapis/u2cw487nt5/local/_user_request_

Use curl to request the /hello endpoint, like this:

curl http://localhost:4566/restapis/u2cw487nt5/local/_user_request_/hello

The response should be:

Hello World!