MedBook is a medical record management system designed to streamline the storage, retrieval, and management of patient medical records. This project aims to provide an efficient platform for handling medical data.
To set up the MedBook project on your local machine, follow these steps:
- Java Development Kit (JDK) 8 or higher
- Apache Maven
- MySQL or any other preferred SQL database
- Clone the repository:
git clone <repository_url>
- Navigate to the project directory:
cd medbook
- Build the project using Maven:
mvn clean install
After building the project, you can run the application using the following command:
mvn tomcat7:run
Once the application is running, you can access it at http://localhost:8080
.
- Create a new database in your SQL server.
- Import the database schema provided in
medbook_db.sql
:mysql -u username -p medbook_db < medbook_db.sql
- Update the database connection properties in
src/main/resources/application.properties
to match your database configuration.
We welcome contributions to improve MedBook. To contribute, follow these steps:
- Fork the repository.
- Create a new branch for your feature or bugfix:
git checkout -b feature-name
- Commit your changes:
git commit -m "Description of your changes"
- Push to the branch:
git push origin feature-name
- Create a pull request on GitHub.
This project is licensed under the MIT License. See the LICENSE
file for more details.