Getting started with AWS Amplify following this tutorial.
npm install -g @aws-amplify/cli
-
configuration:
amplify configureWalkthrough here.
Initialization needs to be added for the application and for local use run
amplify pull --appId xxxxxxx --envName xxxxx. -
authentication:
- installation:
npm install aws-amplify @aws-amplify/ui-react - create the authentication service:
amplify add auth - deploy:
amplify push --y - update the React project and set the CI/CD of the frontend and backend
- trigger a new build
- installation:
-
API and db:
- create the GraphQL API and db:
amplify add api - update the schema as needed
- deploy
- view the GraphQL API in the account at any time:
amplify console api - update the React project
- create the GraphQL API and db:
-
storage:
- create the storage service:
amplify add storage - update the GraphQL schema as needed
- deploy
- update the React project
- create the storage service:
-
remove individual services:
amplify remove auth amplify remove api amplify remove storage -
push the changes with
amplify push -
delete the entire project and associated resources:
amplify delete
[COMPLETED] - As I finished this tutorial, I am setting a personal status of "Completed" and will probably not update this repository in the near future as this was a learning project.