Skip to content

PrunedNeuron/MedHistory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MedHistory

Prerequisites

  1. JDK version >= 8
  2. MySQL

Steps to run

  1. Open a Postgresql console in the terminal

    psql -U <your-username>
  2. Create a database called "medhistory"

    CREATE DATABASE medhistory;
  3. Open the application.properties file located in src/main/resources and add your MySQL username and password like this:

    spring.datasource.username=<your-username-here>
    spring.datasource.password=<your-password-here>
  4. Either run the main function in src/main/java/dev/ayushm/med/Application.java in eclipse OR,

    1. Open a terminal in the root of the project

    2. Run the following commands to build a jar file and then run it

      • on Windows

        .\mvnw clean install
        java -jar target\medhistory.war
      • on Linux and Mac

        ./mvnw clean install
        java -jar target/medhistory.war
  5. Open localhost:8080 in your browser.

About

Project on medical history management built using Spring Boot, Spring Data JPA with a MySQL/MariaDB database.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors