Skip to content

This Is A Case Study On "Campus Community Portal" As A Part of MassMutual Full Stack Developer Training

Notifications You must be signed in to change notification settings

codewithshek/TheAlumniGate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Directory structure:
└── thealumnigate-thealumnigate/
    ├── Backend/
    │   ├── app.js
    │   ├── cloudConfig.js
    │   ├── package.json
    │   ├── init/
    │   │   ├── index.js
    │   │   └── students.js
    │   ├── middlewares/
    │   │   ├── multer.js
    │   │   └── verifyToken.js
    │   └── src/
    │       ├── config/
    │       │   ├── cloudinary.js
    │       │   └── database.js
    │       ├── controllers/
    │       │   ├── applicationController.js
    │       │   ├── authController.js
    │       │   ├── companyController.js
    │       │   └── profileController.js
    │       ├── models/
    │       │   ├── application.js
    │       │   ├── company.js
    │       │   └── student.js
    │       ├── routes/
    │       │   ├── applications.js
    │       │   ├── auth.js
    │       │   ├── companies.js
    │       │   ├── eligibility.js
    │       │   └── profile.js
    │       └── services/
    │           ├── applicationService.js
    │           ├── authService.js
    │           └── companyService.js
    └── Frontend/
        ├── README.md
        ├── ARCHITECTURE.md
        ├── eslint.config.js
        ├── index.html
        ├── package.json
        ├── postcss.config.js
        ├── tailwind.config.js
        ├── vite.config.js
        └── src/
            ├── App.css
            ├── App.jsx
            ├── index.css
            ├── main.jsx
            ├── components/
            │   ├── DarkModeToggle.jsx
            │   ├── LightRays.jsx
            │   ├── Navbar.jsx
            │   ├── PostRegistrationRoute.jsx
            │   ├── PrivateRoute.jsx
            │   ├── PublicRoute.jsx
            │   ├── RegistrationRoute.jsx
            │   ├── Toast.jsx
            │   ├── ToastContainer.jsx
            │   └── TrueFocus.jsx
            ├── constants/
            │   ├── api.js
            │   ├── routes.js
            │   └── validation.js
            ├── context/
            │   ├── AuthContext.js
            │   ├── AuthProvider.jsx
            │   └── ThemeContext.jsx
            ├── hooks/
            │   ├── useApi.js
            │   ├── useAuth.js
            │   ├── useLocalStorage.js
            │   ├── useTheme.js
            │   └── useToast.js
            ├── pages/
            │   ├── AppliedCompanies.jsx
            │   ├── ApplyPage.jsx
            │   ├── Auth.jsx
            │   ├── Companies.jsx
            │   ├── CompaniesForYou.jsx
            │   ├── CompanyDetails.jsx
            │   ├── Confirmation.jsx
            │   ├── Home.jsx
            │   ├── Profile.jsx
            │   ├── Registration.jsx
            │   └── update-preferences.jsx
            ├── services/
            │   ├── api.js
            │   ├── applicationService.js
            │   ├── authService.js
            │   ├── companyService.js
            │   └── profileService.js
            ├── types/
            │   └── index.js
            └── utils/
                ├── helpers.js
                ├── storage.js
                └── validation.js

About

This Is A Case Study On "Campus Community Portal" As A Part of MassMutual Full Stack Developer Training

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.0%
  • Other 1.0%