Skip to content

Latest commit

 

History

History
86 lines (73 loc) · 3.07 KB

README.md

File metadata and controls

86 lines (73 loc) · 3.07 KB
Resillience Logo Resillience Twitter Resillience Instagram Resillience Linkedin Resillience Youtube Resillience Facebook

About

Resillience is a team of IIT graduate mentors, and dedicated professionals with a single goal to provide personalized 1-on-1 coaching for IIT/NEET/MHC-CET Engineering Entrance Exam preparation. We believe: “Everyone can learn and excel but the ways will be different”

Key Features ✨

  1. Platform for teachers to conduct live online classes with students
  2. Online Examination System for teachers to upload subject/chapter-wise questions
  3. Interactive test platform for students and corresponding test result with analysis in the form of graphs
  4. Allowing parents to book free counselling session based on different services provided
  5. Dynamically allowing admin to create blogs for website

What's included 👀

Project Structure

.
├── client/
├── ...

Client Structure

.
├── public/
├── src                       # Source files
|   ├── components/           # Pages/Components
|   |     ├── AboutUs/
|   |     ├── Blogs/
|   |     ├── Career/
|   |     ├── ContactUs/
|   |     ├── Context/
|   |     ├── Features/
|   |     ├── Home/
|   |     ├── NavBar/
|   |     ├── Reducers/
|   |     ├── Tests/
|   |     ├── Title/
|   |     ├── Miscellaneous/
|   |     ├── Error.js
|   |     └── Faqs.js
|   ├── App.js
|   ├── index.js              # React app starting point
|   └── ...
└── ...

Server Structure

├── ...
|   ├── config/
|   ├── middleware/
|   ├── models/
|   ├── public/
|   ├── routes/
|   ├── views/
|   ├── routes
|   └── app.js                # Nodejs starting point
├── ...