Skip to content

TanoojSeelam/StudentDatabaseManagementSystem_MongoDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Student Database Management System (MongoDB) 🎓📊

This project is a Student Database Management System implemented using MongoDB, designed to efficiently manage student information for educational institutions.

Features 🚀

  • User Authentication: Secure authentication system for administrators and students.
  • Student Management: CRUD operations for managing student records.
  • Course Management: Add, update, and delete courses.
  • Attendance Tracking: Track student attendance for each course.
  • Performance Analysis: Generate reports on student performance and attendance.

Installation 🔧

  1. Clone the repository:
git clone https://github.com/TanoojSeelam/StudentDatabaseManagementSystem_MongoDB.git
  1. Install dependencies:
npm install
  1. Configure MongoDB:
  • Install MongoDB if not already installed.
  • Start MongoDB server.
  • Update config/db.js with your MongoDB URI.
  1. Start the server:
npm start

Usage ℹ️

  1. Login:
  • Use the provided credentials to log in as an administrator or student.
  1. Admin Dashboard:
  • Manage students, courses, and attendance records.
  • Generate reports on student performance and attendance.
  1. Student Dashboard:
  • View personal information and enrolled courses.
  • Check attendance and grades.

Contributing 🤝

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/your-feature).
  3. Make your changes.
  4. Commit your changes (git commit -am 'Add some feature').
  5. Push to the branch (git push origin feature/your-feature).
  6. Create a new Pull Request.

License 📜

This project is licensed under the MIT License - see the LICENSE file for details.

MongoDB PHP Driver

Travis Build Status AppVeyor Build Status Coverage Status

This extension is developed atop the libmongoc and libbson libraries. It provides a minimal API for core driver functionality: commands, queries, writes, connection management, and BSON serialization.

Userland PHP libraries that depend on this extension may provide higher level APIs, such as query builders, individual command helper methods, and GridFS. Application developers should consider using this extension in conjunction with the MongoDB PHP library, which implements the same higher level APIs found in MongoDB drivers for other languages (as well as the legacy PHP driver).

Documentation

Installation

To build and install the driver:

$ pecl install mongodb
$ echo "extension=mongodb.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`

Additional installation instructions may be found in the PHP.net documentation.

This extension is intended to be used alongside the MongoDB PHP Library, which is distributed as the mongodb/mongodb package for for Composer.

Reporting Issues

Issues pertaining to the extension should be reported in the PHPC project in MongoDB's JIRA. Library-related issues should be reported in the PHPLIB project.

For general questions and support requests, please use one of MongoDB's Technical Support channels.

Security Vulnerabilities

If you've identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions in Create a Vulnerability Report.

Development

Development is tracked in the PHPC project in MongoDB's JIRA. Documentation for contributing to this project may be found in CONTRIBUTING.md.