An open API service indexing awesome lists of open source software.

https://github.com/samuraikun/aws-serverless-editor-app


https://github.com/samuraikun/aws-serverless-editor-app

appsync aws aws-amplify aws-amplify-react graphql react

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# What's this repo?
- the app for my practice about [AWS Amplify](https://aws.amazon.com/jp/amplify/) & [AppSync](https://aws.amazon.com/jp/appsync/).

# Run on Local

- Node.js v10.16.0
- use `create-react-app`

```bash
npm i -g @aws-amplify/cli

yarn install

// If you signed up AWS console
amplify init

// use Cognito
amplify add auth

// select GraphQL API
amplify add api

yarn start
``