Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 1.13 KB

README.md

File metadata and controls

33 lines (17 loc) · 1.13 KB

A Serverless Todo App

Deployed here: https://d17sofd3yzro6z.cloudfront.net/

Started with this tutorial. Serverless Stack provides some nice abstractions on top of the AWS CDK for simplifying development and enables "Live Lambda Development" which is amazing.

Authentication is handled by AWS Cognito along with the AWS Amplify client library and React components.

The back-end consists of AWS DynamoDB, AppSync, and Lambda (Node.js).

Uses GraphQL Code Generation to output Apollo/React hooks along with Chakra UI on the front-end, deployed to AWS S3/Cloudfront.

Commands

yarn start

Starts the local Lambda development environment.

yarn build

Build the app and synthesize stacks.

Generates a .build/ directory with the compiled files and a .build/cdk.out/ directory with the synthesized CloudFormation stacks.

yarn deploy [stack]

Deploy all stacks to AWS. Or optionally deploy a specific stack.

yarn remove [stack]

Remove all stacks and their resources from AWS. Or optionally remove a specific stack.