From 5db196eebb04155491630b5396d1b7a7f2eab4e6 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 11 Feb 2025 21:30:34 -0600 Subject: Push initial release 1.0.0 --- src/main/resources/application.properties | 15 ++ .../resources/templates/actuatorDashboard.html | 39 ++++++ src/main/resources/templates/admin.html | 53 +++++++ src/main/resources/templates/client.html | 53 +++++++ src/main/resources/templates/contact.html | 53 +++++++ src/main/resources/templates/index.html | 37 +++++ src/main/resources/templates/login.html | 87 ++++++++++++ src/main/resources/templates/navbar.html | 77 ++++++++++ src/main/resources/templates/pkgs/add.html | 109 +++++++++++++++ src/main/resources/templates/pkgs/edit.html | 109 +++++++++++++++ src/main/resources/templates/pkgs/index.html | 62 +++++++++ src/main/resources/templates/pkgs/sorting.html | 6 + src/main/resources/templates/profile.html | 84 +++++++++++ src/main/resources/templates/register.html | 155 +++++++++++++++++++++ src/main/resources/templates/user.html | 53 +++++++ 15 files changed, 992 insertions(+) create mode 100644 src/main/resources/application.properties create mode 100644 src/main/resources/templates/actuatorDashboard.html create mode 100644 src/main/resources/templates/admin.html create mode 100644 src/main/resources/templates/client.html create mode 100644 src/main/resources/templates/contact.html create mode 100644 src/main/resources/templates/index.html create mode 100644 src/main/resources/templates/login.html create mode 100644 src/main/resources/templates/navbar.html create mode 100644 src/main/resources/templates/pkgs/add.html create mode 100644 src/main/resources/templates/pkgs/edit.html create mode 100644 src/main/resources/templates/pkgs/index.html create mode 100644 src/main/resources/templates/pkgs/sorting.html create mode 100644 src/main/resources/templates/profile.html create mode 100644 src/main/resources/templates/register.html create mode 100644 src/main/resources/templates/user.html (limited to 'src/main/resources') diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..f6a7814 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,15 @@ +spring.application.name=builddb + +spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver +spring.datasource.url=jdbc:mysql://nucleus.berzerkula.org:3306/builddb_users +spring.datasource.username=kb0iic +spring.datasource.password=ENC(1xjvlowHDUgzAYCjEEaYcSQOQHL2SHo8) + +spring.jpa.show-sql=true +spring.jpa.hibernate.ddl-auto=update + +jasypt.encryptor.algorithm=PBEWithMD5AndDES +jasypt.encryptor.iv-generator-classname=org.jasypt.iv.NoIvGenerator +jasypt.encryptor.password=builddb + +management.endpoints.web.exposure.include=* \ No newline at end of file diff --git a/src/main/resources/templates/actuatorDashboard.html b/src/main/resources/templates/actuatorDashboard.html new file mode 100644 index 0000000..e97bb8f --- /dev/null +++ b/src/main/resources/templates/actuatorDashboard.html @@ -0,0 +1,39 @@ + + + + spring-boot-actuator + + + + +
+ + +
+
+ + Home +
+ + + + \ No newline at end of file diff --git a/src/main/resources/templates/admin.html b/src/main/resources/templates/admin.html new file mode 100644 index 0000000..16f8f7f --- /dev/null +++ b/src/main/resources/templates/admin.html @@ -0,0 +1,53 @@ + + + + + + builddb + + + + +
+
+

Admin Page

+
+ Home +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/templates/client.html b/src/main/resources/templates/client.html new file mode 100644 index 0000000..487d427 --- /dev/null +++ b/src/main/resources/templates/client.html @@ -0,0 +1,53 @@ + + + + + + builddb + + + + +
+
+

Client Page

+
+ Home +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/templates/contact.html b/src/main/resources/templates/contact.html new file mode 100644 index 0000000..f1c6a3f --- /dev/null +++ b/src/main/resources/templates/contact.html @@ -0,0 +1,53 @@ + + + + + + builddb + + + + +
+
+

Contact

+
+ Home +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html new file mode 100644 index 0000000..b33e45f --- /dev/null +++ b/src/main/resources/templates/index.html @@ -0,0 +1,37 @@ + + + + + + builddb + + + + + + + +
+ +
+

Builddb

+ + + + Packages +
+ +
+ + + + + + \ No newline at end of file diff --git a/src/main/resources/templates/login.html b/src/main/resources/templates/login.html new file mode 100644 index 0000000..0893fa0 --- /dev/null +++ b/src/main/resources/templates/login.html @@ -0,0 +1,87 @@ + + + + + + builddb + + + + +
+
+

Login

+
+ + + + +
+ + + +
+ + +
+ +
+ + +
+ +
+
+ +
+
+ Cancel +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/templates/navbar.html b/src/main/resources/templates/navbar.html new file mode 100644 index 0000000..0aa60e0 --- /dev/null +++ b/src/main/resources/templates/navbar.html @@ -0,0 +1,77 @@ + \ No newline at end of file diff --git a/src/main/resources/templates/pkgs/add.html b/src/main/resources/templates/pkgs/add.html new file mode 100644 index 0000000..107784f --- /dev/null +++ b/src/main/resources/templates/pkgs/add.html @@ -0,0 +1,109 @@ + + + + + + builddb + + + + + + +
+ +
+
+

Add Package

+ +
+ + +
+ +
+ +

+
+
+ +
+ +
+ +

+
+
+ +
+ +
+ +

+
+
+ +
+ +
+