-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
task3.1: create lambda function for products list #13
Conversation
✔️ Create a lambda function called `getProductsList` of Product Service which will be triggered by the HTTP GET method. ✔️ The requested URL should be `/products`. ✔️ The response from the lambda should be a full array of products. ✔️ This endpoint should be integrated with Frontend app for Product List Page representation Additional tasks: ✔️ Async/await is used in lambda functions ✔️ ES6 modules are used for Product Service implementation ✔️ ESBuild is configured for Product Service. Extra effort: * api gateway is defined as separate service to reuse for all future lambdas * app is build on deploy stage with forked scriptable plugin * api gateway url is passed to frontend app build
Build output Deploying to stage task3-1 |
✔️ Create a lambda function called
getProductsList
of Product Service which will be triggered by the HTTP GET method.✔️ The requested URL should be
/products
.✔️ The response from the lambda should be a full array of products.
✔️ This endpoint should be integrated with Frontend app for Product List Page representation
Additional tasks:
✔️ Async/await is used in lambda functions
✔️ ES6 modules are used for Product Service implementation
✔️ ESBuild is configured for Product Service.
Extra effort: