This repository contains the commands and code used in this YouTube video.
Here are the terminal commands in order of appearance of the video.
npm install -g @aws-amplify/cli
amplify configure
npx create-react-app <name of your app>
cd <name of your app>
amplify init
amplify add auth
amplify push
npm install aws-amplify @aws-amplify/ui-react
npm start
git init
git add .
git commit –m "Initial commit"
git branch –M main
git remote add origin <repository URL>
git push –u origin main
- App.js: The React application that's configured to use Cognito for authentication
- Quiz.js: The Quiz component
- quizData.js: The hard-coded questions and answers for the quiz