Software Engineering
This is a hospital Queueing system that mainly used for the queuing in hospital. To run this program:
- Start Database: run the sql file bokuno_database.sql in your mysql terminal.
Here's a guide to run the sql file. - Change Password of mySql Database in "src/main/resources/application.properties".
spring.datasource.username=root // your password username
spring.datasource.password=123456 // your password- Match this project's mySql version with your local mySql version in ./pom.xml
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.11</version>
<!--This version should match your local version-->
</dependency>- Start Backend: in the same directory of "bokuno_database.sql", run
mvn clean spring-boot:runin the terminal. - Clone Frontend: the frontend is in a different git repository.
- Start Frontend: run
npm installfirst. Then runnpm start - now go to frontend link to see the working webpage.