EduTrack is a modern, role-based C++ application for managing students, tutors, teachers, and subjects. It features secure login, role-based access, and a persistent MariaDB backend, making it ideal for educational institutions.
- Role-based Login: Secure authentication for Students, Tutors, and Teachers
- Role-specific Menus: Each user type sees only relevant actions
- Password Management: Default password, reset, and account locking
- Persistent Storage: Uses MySQL/MariaDB for all data
- Object-Oriented Design: Clean C++ codebase
- Unit Testing: Google Test-based tests
- Easy Setup: Docker and manual build instructions
# Clone the repository
$ git clone https://github.com/YUKII2K3/EduTrack-Student-Management-System.git
$ cd EduTrack-Student-Management-System
# Install dependencies (example for Ubuntu)
$ sudo apt-get update
$ sudo apt-get install build-essential cmake mariadb-server libmariadb-dev libgtest-dev
# Set up the database
$ sudo service mysql start
$ mysql -u root -e 'create database oop;'
$ mysql -u root oop < utils/db.sql
# Build the project
$ mkdir build && cd build
$ cmake ..
$ make
# Run the main application
$ ./MainSelf
- Initial password for all new users:
EduTrack@Init2025
- Users are prompted to change this password on first login.
This project is licensed under the MIT License:
MIT License
Copyright (c) 2024 Yuktheshwar
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Developed and maintained by Yuktheshwar.
https://github.com/YUKII2K3/EduTrack-Student-Management-System