https://github.com/eiberham/serverless-react-cognito
https://github.com/eiberham/serverless-react-cognito
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eiberham/serverless-react-cognito
- Owner: eiberham
- Created: 2020-10-21T02:22:08.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-25T02:45:01.000Z (over 5 years ago)
- Last Synced: 2024-12-29T05:24:27.648Z (over 1 year ago)
- Language: JavaScript
- Size: 143 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 authentication service:
```shell
amplify add auth
```
Finally we need to push our changes.
```shell
amplify push
```
That's it.