Skip to content

Latest commit

 

History

History
98 lines (86 loc) · 2.87 KB

README.md

File metadata and controls

98 lines (86 loc) · 2.87 KB

image

Detectsy

A Face Detection web app

💻 Building locally

# Clone the repo
git clone https://github.com/hardikchopra242/Detectsy.git
cd Detectsy

# Install dependencies
npm install

# Start development server
npm start

🚀 Building for production

# Clone the repo
git clone https://github.com/hardikchopra242/Detectsy.git
cd Detectsy

# Install dependencies
npm install

# Build
npm build

📂 What's inside?

See what's inside the src folder

src
├── App.js
├── App.test.js
├── components
│   ├── FaceRecognition
│   │   ├── FaceRecognition.jsx
│   │   └── FaceRecognition.style.js
│   ├── Footer
│   │   ├── Footer.jsx
│   │   └── Footer.style.js
│   ├── Home
│   │   ├── Home.jsx
│   │   └── Home.style.js
│   ├── Howto
│   │   ├── Howto.jsx
│   │   └── HowTo.style.js
│   ├── ImageLinkForm
│   │   ├── ImageLinkForm.jsx
│   │   └── ImageLinkForm.style.js
│   ├── ImageSearchPage
│   │   ├── ImageSearchPage.jsx
│   │   └── ImageSearchPage.style.js
│   ├── MainSection
│   │   ├── MainSection.jsx
│   │   └── MainSection.style.js
│   ├── Navigation
│   │   ├── Navigation.jsx
│   │   └── Navigation.style.js
│   ├── Register
│   │   └── Register.jsx
│   └── Signin
│       ├── Signin.jsx
│       └── Signin.style.js
├── images
│   ├── animated.svg
│   ├── favicon.png
│   ├── sample.png
│   ├── search.svg
│   ├── signin.svg
│   └── sprinkle.svg
├── index.js
├── registerServiceWorker.js
└── styles
    ├── global.style.js
    └── theme.config.js

🔑 Contribute

  • If you want to suggest some other feature, please open an issue here.
  • If you noticed some typos or a need to fix syntax, don't hesitate to make a pull request.
  • You can find existing issues here, if you can fix them, go for it!