Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.72 KB

error_documention.md

File metadata and controls

48 lines (35 loc) · 1.72 KB

Project Team 5 Documentation

JS Documentation

View documentation

  1. Open the file amplifyapp/docs/index.html

Update documentation

  1. Run the command npm docs
    1. If there are any problems it probably has to do with the jsdoc library
  2. The new documentation will be generated in amplifyapp/docs

Front End

Components

Issues

Issue #1 - xxx is not a component.

Problem: When running npm start or trying to build the front end, the following react-router error is thrown image

Solution: react-router V5 uses the <Router> and <Routes> tags. In the newest version the library no longer uses those tags

Issue #1 - The Josh Problem

Backend/AWS

Issues

Issue #1 - The Josh Problem

Problem: amplify commands error out after running amplify pull, the error shows a non-existent directory

Solution: run amplify init with default arguments image

Issue #2 - User pool error

Problem: An error message is thrown when logging in: user pool xxxx does not exist

Solution:

  1. Run amplify update auth
  2. Choose apply default configuration with social provider (non-federation)
    1. Note: This will reset all of the auth settings to default

Issue #3 - Git ignore not working

Problem: Git is showing files to commit that are in the git ignore

Solution:

  1. Run git rm -rf --cached .
  2. git add .
  3. git commit -m "fixed untracked files" or just use github desktop
  4. GG