Skip to content

AWS serverless lambda function for send customer information to google form through api using nestjs

Notifications You must be signed in to change notification settings

paalamugan/nestjs-serverless-aws-lambda

Repository files navigation

AWS Serverless Lambda with NestJS

This project is a sample project to demonstrate how to setup aws lambda function with nestjs.

Sample Google Form

Installation

$ yarn install

Running the app

# development
$ yarn start

# watch mode
$ yarn start:dev

# production mode
$ yarn start:prod

Test

# unit tests
$ yarn test

# e2e tests
$ yarn test:e2e

# test coverage
$ yarn test:cov

Deployment

Before deployment, you need to setup aws credentials in your local machine. Refer below link for more details. https://www.serverless.com/framework/docs/providers/aws/guide/credentials

  • Dev environment
  yarn sls:deploy
  • Prod environment
  yarn sls:deploy:prod

Tips