From 1df19fd955eb951f5d31fb205963b2f4e794c039 Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Thu, 25 Jul 2024 11:56:13 +1000 Subject: Separate Docker Compose services for build, test, run Refactor Docker Compose setup to include distinct services for building, testing, and running the application. Use separate Dockerfiles and configurations for each phase to isolate concerns and improve workflow. Quiet down the maven logs and set log levels to WARN so there is less noise in the logs. Update README file with information on running the project. --- src/test/resources/application-test.properties | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/test') diff --git a/src/test/resources/application-test.properties b/src/test/resources/application-test.properties index 87666a1..3c690d8 100644 --- a/src/test/resources/application-test.properties +++ b/src/test/resources/application-test.properties @@ -1,3 +1,5 @@ +logging.level.root=warn +logging.level.org.springframework.web=info # H2 Configuration spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE spring.datasource.driver-class-name=org.h2.Driver -- cgit v1.2.3