From 249c81ef4cf1db3cf4248c33fe614ff299e2dd57 Mon Sep 17 00:00:00 2001 From: mrfoxygmfr Date: Sun, 23 Mar 2025 14:53:14 +0300 Subject: test(db): add simple hibernate config test --- src/test/resources/application.properties | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/test/resources/application.properties (limited to 'src/test/resources/application.properties') diff --git a/src/test/resources/application.properties b/src/test/resources/application.properties new file mode 100644 index 0000000..f1d166d --- /dev/null +++ b/src/test/resources/application.properties @@ -0,0 +1,6 @@ +spring.application.name=warehouse_accounting + +database.driver=org.postgresql.Driver +database.url=jdbc:postgresql://localhost:5432/warehouse_accounting +database.username=postgres +database.password=postgres -- cgit mrf-deployment