diff --git a/BrickLog-Client/target/classes/com/example/bricklog/BrickLogClientApplication.class b/BrickLog-Client/target/classes/com/example/bricklog/BrickLogClientApplication.class index 3c9ae1d..5fd1d02 100644 Binary files a/BrickLog-Client/target/classes/com/example/bricklog/BrickLogClientApplication.class and b/BrickLog-Client/target/classes/com/example/bricklog/BrickLogClientApplication.class differ diff --git a/BrickLog-Client/target/classes/com/example/bricklog/view/GalleryLayout.class b/BrickLog-Client/target/classes/com/example/bricklog/view/GalleryLayout.class index f23b1fc..57de9da 100644 Binary files a/BrickLog-Client/target/classes/com/example/bricklog/view/GalleryLayout.class and b/BrickLog-Client/target/classes/com/example/bricklog/view/GalleryLayout.class differ diff --git a/BrickLog-Client/target/classes/css/config/application.properties b/BrickLog-Client/target/classes/css/config/application.properties new file mode 100644 index 0000000..e69de29 diff --git a/BrickLog-Client/target/classes/css/dark-theme.css b/BrickLog-Client/target/classes/css/dark-theme.css new file mode 100644 index 0000000..e69de29 diff --git a/BrickLog-Client/target/classes/css/light-theme.css b/BrickLog-Client/target/classes/css/light-theme.css new file mode 100644 index 0000000..e69de29 diff --git a/BrickLog-Server/src/.dockerignore b/BrickLog-Server/.dockerignore similarity index 84% rename from BrickLog-Server/src/.dockerignore rename to BrickLog-Server/.dockerignore index d52840a..9cbf74e 100644 --- a/BrickLog-Server/src/.dockerignore +++ b/BrickLog-Server/.dockerignore @@ -1,5 +1,4 @@ sql/ -target/ *.log *.class .idea/ diff --git a/BrickLog-Server/src/Dockerfile b/BrickLog-Server/Dockerfile similarity index 84% rename from BrickLog-Server/src/Dockerfile rename to BrickLog-Server/Dockerfile index 053b5a9..cb81000 100644 --- a/BrickLog-Server/src/Dockerfile +++ b/BrickLog-Server/Dockerfile @@ -5,7 +5,7 @@ FROM openjdk:21-jdk-slim WORKDIR /app # Copy the built JAR file into the container -COPY target/BrickLog-Server-0.1.jar app.jar +COPY target/BrickLog-Server-0.1-SNAPSHOT.jar app.jar # Expose the port your application runs on EXPOSE 8080 diff --git a/BrickLog-Server/src/docker-compose.yml b/BrickLog-Server/docker-compose.yml similarity index 100% rename from BrickLog-Server/src/docker-compose.yml rename to BrickLog-Server/docker-compose.yml diff --git a/BrickLog-Server/src/main/java/resources/application.properties b/BrickLog-Server/src/main/java/resources/application.properties index 1db829b..f47c8ff 100644 --- a/BrickLog-Server/src/main/java/resources/application.properties +++ b/BrickLog-Server/src/main/java/resources/application.properties @@ -1,7 +1,7 @@ # Database configuration spring.datasource.url=jdbc:mariadb://host.docker.internal:3306/bricklog spring.datasource.username=bricklog -spring.datasource.password=your_password_here +spring.datasource.password=sl0gg1ngBricks4llD4y # JPA settings diff --git a/BrickLog-Server/target/BrickLog-Server-0.1-SNAPSHOT.jar b/BrickLog-Server/target/BrickLog-Server-0.1-SNAPSHOT.jar index 954b99b..da653aa 100644 Binary files a/BrickLog-Server/target/BrickLog-Server-0.1-SNAPSHOT.jar and b/BrickLog-Server/target/BrickLog-Server-0.1-SNAPSHOT.jar differ diff --git a/BrickLog-Server/target/classes/com/example/bricklog/BrickLogApplication.class b/BrickLog-Server/target/classes/com/example/bricklog/BrickLogApplication.class index 68455e2..0c6a044 100644 Binary files a/BrickLog-Server/target/classes/com/example/bricklog/BrickLogApplication.class and b/BrickLog-Server/target/classes/com/example/bricklog/BrickLogApplication.class differ diff --git a/BrickLog-Server/target/classes/com/example/bricklog/controller/LegoBuildController.class b/BrickLog-Server/target/classes/com/example/bricklog/controller/LegoBuildController.class index 92f2732..0b74f11 100644 Binary files a/BrickLog-Server/target/classes/com/example/bricklog/controller/LegoBuildController.class and b/BrickLog-Server/target/classes/com/example/bricklog/controller/LegoBuildController.class differ diff --git a/BrickLog-Server/target/classes/com/example/bricklog/model/LegoBuild.class b/BrickLog-Server/target/classes/com/example/bricklog/model/LegoBuild.class index 2fcf428..4e7b9e5 100644 Binary files a/BrickLog-Server/target/classes/com/example/bricklog/model/LegoBuild.class and b/BrickLog-Server/target/classes/com/example/bricklog/model/LegoBuild.class differ diff --git a/BrickLog-Server/target/classes/com/example/bricklog/repository/LegoBuildRepository.class b/BrickLog-Server/target/classes/com/example/bricklog/repository/LegoBuildRepository.class index 0125d94..7c9fb5d 100644 Binary files a/BrickLog-Server/target/classes/com/example/bricklog/repository/LegoBuildRepository.class and b/BrickLog-Server/target/classes/com/example/bricklog/repository/LegoBuildRepository.class differ diff --git a/BrickLog-Server/target/classes/resources/application.properties b/BrickLog-Server/target/classes/resources/application.properties deleted file mode 100644 index a1ade11..0000000 --- a/BrickLog-Server/target/classes/resources/application.properties +++ /dev/null @@ -1,9 +0,0 @@ -# MariaDB Configuration -spring.datasource.url=jdbc:mariadb://localhost:3306/bricklog_db -spring.datasource.username=your_db_username -spring.datasource.password=your_db_password - -# JPA settings -spring.jpa.hibernate.ddl-auto=update # Creates tables automatically; set to 'none' in production if not needed -spring.jpa.show-sql=true # Shows SQL queries in the console, useful for debugging -spring.jpa.database-platform=org.hibernate.dialect.MariaDBDialect diff --git a/BrickLog-Server/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/BrickLog-Server/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst index 6fe0d0c..4756f7c 100644 --- a/BrickLog-Server/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ b/BrickLog-Server/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -1 +1,4 @@ com\example\bricklog\BrickLogApplication.class +com\example\bricklog\controller\LegoBuildController.class +com\example\bricklog\model\LegoBuild.class +com\example\bricklog\repository\LegoBuildRepository.class diff --git a/BrickLog-Server/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/BrickLog-Server/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst index d61b148..561c18b 100644 --- a/BrickLog-Server/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ b/BrickLog-Server/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -1 +1,4 @@ C:\Users\bryce\Documents\Git\BrickLog\BrickLog-Server\src\main\java\com\example\bricklog\BrickLogApplication.java +C:\Users\bryce\Documents\Git\BrickLog\BrickLog-Server\src\main\java\com\example\bricklog\repository\LegoBuildRepository.java +C:\Users\bryce\Documents\Git\BrickLog\BrickLog-Server\src\main\java\com\example\bricklog\controller\LegoBuildController.java +C:\Users\bryce\Documents\Git\BrickLog\BrickLog-Server\src\main\java\com\example\bricklog\model\LegoBuild.java diff --git a/BrickLog.jar b/BrickLog.jar new file mode 100644 index 0000000..190efbe Binary files /dev/null and b/BrickLog.jar differ