Skip to content

Latest commit

 

History

History
97 lines (87 loc) · 3.02 KB

README.md

File metadata and controls

97 lines (87 loc) · 3.02 KB

Welcome to Github Finder 👋

License: MIT Twitter: arif_iq

An App to search users on Github and get their repositories and other information.

Github Finder

An App to search users on Github and get their repositories and other information.

API Gateway, Lambda and DynamoDB

Stacks Used

Folder Structure

.
├── LICENSE
├── README.md
├── SECURITY.md
├── cypress
│   ├── e2e
│   │   └── spec.cy.ts
│   ├── fixtures
│   │   └── example.json
│   └── support
│       ├── commands.ts
│       └── e2e.ts
├── cypress.config.ts
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
│   ├── favicon.ico
│   ├── index.html
│   ├── logo192.png
│   ├── logo512.png
│   ├── manifest.json
│   └── robots.txt
├── src
│   ├── App.tsx
│   ├── alert
│   │   ├── AlertContext.tsx
│   │   └── AlertReducer.tsx
│   ├── components
│   │   ├── layout
│   │   │   ├── Alert.tsx
│   │   │   ├── Footer.tsx
│   │   │   ├── NavBar.tsx
│   │   │   ├── Spinner.jsx
│   │   │   └── assets
│   │   │       └── spinner.gif
│   │   ├── repos
│   │   │   ├── RepoItem.tsx
│   │   │   └── RepoList.tsx
│   │   └── users
│   │       ├── UserItem.tsx
│   │       ├── UserResults.tsx
│   │       └── UserSearch.tsx
│   ├── context
│   │   └── github
│   │       ├── GithubActions.ts
│   │       ├── GithubContext.tsx
│   │       └── GithubReducer.tsx
│   ├── images
│   │   └── github-finder-shot.png
│   ├── index.css
│   ├── index.tsx
│   ├── pages
│   │   ├── About.tsx
│   │   ├── Home.tsx
│   │   ├── NotFound.tsx
│   │   └── User.tsx
│   └── react-app-env.d.ts
├── tailwind.config.js
└── tsconfig.json

Vercel Deployment