Skip to content

Commit

Permalink
Updated UI with vue-3 and PrimeVue components
Browse files Browse the repository at this point in the history
  • Loading branch information
mrin9 committed Feb 11, 2021
1 parent 592e8bc commit a3ffbbc
Show file tree
Hide file tree
Showing 180 changed files with 9,618 additions and 33,822 deletions.
16 changes: 8 additions & 8 deletions database/src/main/java/com/app/DatabaseService.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ public class DatabaseService {
public static void initDB() {
try {
getDBConnection();
//dbWebServer = Server.createWebServer("-webPort","9000", "-webAllowOthers").start();
dbWebServer = Server.createTcpServer("-tcpPort", "9092", "-tcpAllowOthers").start();
dbWebServer = Server.createWebServer("-webPort","9000", "-webAllowOthers").start();
// dbWebServer = Server.createTcpServer("-tcpPort", "9092", "-tcpAllowOthers").start(); // If you dont want a web console
} catch (SQLException e) {
e.printStackTrace();
}
log.info("\n\n *** Database Initiated ***"+
"\n DB Console : " + dbWebServer.getURL() +
"\n JDBC URL : jdbc:h2:mem:test" +
"\n User : "+DB_USER +
"\n Password : "+DB_PASSWORD +
log.info("\n\n *** Database Console ***"+
"\n DB Console : " + dbWebServer.getURL() +
"\n Driver Class : org.h2.Driver" +
"\n JDBC URL : jdbc:h2:mem:test" +
"\n User : "+DB_USER +
"\n Password : "+DB_PASSWORD +
"\n *** *** *** *** *** \n"
);
}
Expand All @@ -39,7 +40,6 @@ private static Connection getDBConnection() {
} catch (ClassNotFoundException e) {
log.error(e.getMessage());
}

try {
dbConnection = DriverManager.getConnection(DB_CONNECTION, DB_USER, DB_PASSWORD);
return dbConnection;
Expand Down
2,414 changes: 1,207 additions & 1,207 deletions database/src/main/resources/data.sql

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion web-api/css/chunk-vendors.9877ecc8.css

This file was deleted.

1 change: 0 additions & 1 deletion web-api/css/index.b6afe674.css

This file was deleted.

Binary file removed web-api/fonts/Metropolis-Light.5169bcc5.eot
Binary file not shown.
Binary file removed web-api/fonts/Metropolis-Light.dabe320a.woff2
Binary file not shown.
Binary file removed web-api/fonts/Metropolis-Medium.3ab59913.eot
Binary file not shown.
Binary file removed web-api/fonts/Metropolis-Medium.97c97a09.woff2
Binary file not shown.
Binary file removed web-api/fonts/Metropolis-Regular.487ca609.eot
Binary file not shown.
Binary file removed web-api/fonts/Metropolis-Regular.4a405762.woff2
Binary file not shown.
Binary file removed web-api/fonts/Metropolis-SemiBold.24f104a9.eot
Binary file not shown.
Binary file removed web-api/fonts/Metropolis-SemiBold.b89d50b5.woff2
Binary file not shown.
Binary file removed web-api/fonts/element-icons.535877f5.woff
Binary file not shown.
Binary file removed web-api/fonts/element-icons.732389de.ttf
Binary file not shown.
Binary file removed web-api/images/customers.png
Binary file not shown.
Binary file removed web-api/images/employees.png
Binary file not shown.
8 changes: 0 additions & 8 deletions web-api/images/leaves_logo1.svg

This file was deleted.

1 change: 0 additions & 1 deletion web-api/images/leaves_logo2.svg

This file was deleted.

Binary file removed web-api/images/orders.png
Binary file not shown.
Binary file removed web-api/images/products.png
Binary file not shown.
Binary file removed web-api/images/users.png
Binary file not shown.
1 change: 0 additions & 1 deletion web-api/index.html

This file was deleted.

Loading

0 comments on commit a3ffbbc

Please sign in to comment.