The Student Management System is a web application built using Django for the backend and Bootstrap, HTML, and JavaScript for the frontend. The primary functionality of this system is to perform CRUD (Create, Read, Update, Delete) operations on student records. Users can add new student records, update existing ones, and delete records as needed. Used SQLite to store the data.
- Create: Add new student records to the system.
- Read: View a list of existing student records.
- Update: Modify the details of a student record.
- Delete: Remove unwanted student records from the system.
- Backend: Django
- Frontend: Bootstrap, HTML, JavaScript
- Clone the repository:
git clone https://github.com/Shanmukhi-gandham02/student-management-system.git
- Set up a virtual environment:
python -m venv venv .\venv\scripts\activate
- Apply database migrations:
python manage.py migrate
- Run the development server:
python manage.py runserver