https://github.com/eiberham/serverless-graphql-example
Notes application
https://github.com/eiberham/serverless-graphql-example
aws-apigateway aws-cloudformation react serverless
Last synced: 4 months ago
JSON representation
Notes application
- Host: GitHub
- URL: https://github.com/eiberham/serverless-graphql-example
- Owner: eiberham
- Created: 2020-10-14T02:15:20.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-19T19:23:22.000Z (over 5 years ago)
- Last Synced: 2024-12-29T05:24:27.703Z (over 1 year ago)
- Topics: aws-apigateway, aws-cloudformation, react, serverless
- Language: JavaScript
- Homepage:
- Size: 139 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes
## Serverless React Application Built With Aws Amplify Framework.
This is an application example provided by the fullstack serverless book you can find [here](https://www.bookdepository.com/es/Full-Stack-Serverless/9781492059899)
Once the SPA application is setup we proceed to add amplify to our dependencies:
```shell
yarn add aws-amplify
```
Afterwards we need to setup our amplify project:
```shell
amplify init
```
Then we add the GraphQL API:
```shell
amplify add api
```
When made all the desired changes to the GraphQL schema recently created, we need to push our changes.
```shell
amplify push
```
That's it.