This repository contains the backend development for a Hospital Management System as part of a class project. It is implemented using Java and Hibernate, following the first phase of the course where all teams build a backend for a hospital.
- POST /nurse/login: Authenticates a nurse's login.
- GET /nurse/index: Retrieves a list of all nurses.
- GET /nurse/name/{name}: Finds a nurse by their name.
- POST /nurse/create: Creates a nurse.
- GET /nurse/find/{id}: Finds a nurse by their id.
- POST /nurse/update/{id}: Updates a nurse by their id.
- DELETE /nurse/delete/{id}: Deletes a nurse by their id.
- Java
- Springboot
- Hibernate
- MySQL
- Postman
To set up the project locally, follow these steps:
- Clone the repository:
git clone https://github.com/poksyy/hospital-management-system-backend.git
- Navigate to the project directory:
cd hospital-management-system-backend
- Install dependencies: (e.g., using Maven.)
mvn install
- Run the application: (Include any necessary commands or configurations to run the backend.)
If you would like to contribute to this project, please fork the repository and submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.