Skip to content

Getting Started

Kusal Damsara edited this page Jun 15, 2025 · 2 revisions

🚀 Getting Started

Requirements

  • Java 8 or above
  • MySQL Database Server
  • NetBeans, IntelliJ, or Eclipse IDE

Setup Instructions

  1. Clone the repository:

    git clone https://github.com/cusaldmsr/Algounix-Hospital-Management-System.git
    
  2. Open the project in your IDE.

  3. Create the MySQL database using the provided SQL script (hospital.sql or db.sql if available).

  4. Update your DB credentials in the MySQL.java class:

// Example
String url = "jdbc:mysql://localhost:3306/hospital";
String user = "root";
String password = "";
  1. Run the project from the main UI class (e.g., MainUI.java or Dashboard.java).

You're all set!


Clone this wiki locally