A full-stack Student Management System built using Spring Boot and React.
- Backend: Spring Boot, Spring Data JPA, Hibernate
- Frontend: React, Axios
- Database: MySQL
- Tools: Maven, npm, Postman
- Add student
- View all students
- Update student
- Delete student
- RESTful APIs
- React-based UI
student-management-system ├── frontend (React) └── student-management-system (Spring Boot)
- Import backend into IDE
- Configure MySQL
- Run Spring Boot application
cd frontend
npm install
npm start
Frontend runs at:
http://localhost:3000
Backend runs at:
http://localhost:8080
🔥 This README makes your project look **professional**.
---
## 🟢 STEP 4: INITIALIZE GIT (LOCAL)
Open terminal **in project root** (where frontend + backend folders exist).
Run these commands **one by one**:
```bash
git init
git add .
git commit -m "Initial commit: Full-stack Student Management System"