Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 851 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 851 Bytes

First Steps With App Sync

GraphQL API built using AWS CDK based on This article.

Table of Contents

Setting Up The Project

Deploying The Backend

You need to have set up the AWS CLI and have your account credentials set. You also need to have AWS CDK installed. To deploy the backend:

  • cd cdk-chat
  • cdk synth
  • cdk deploy

Answer yes to any of the questions that you are asked. Note that the user referenced by your credentials need to have the necessary permissions to create the resources.

⬆ back to top