From ef2bec524581a63d989fc3de70433a118bd905fa Mon Sep 17 00:00:00 2001 From: mrfoxygmfr Date: Mon, 17 Mar 2025 12:23:11 +0300 Subject: feat(db): add hibernate session factory --- src/main/resources/application.properties | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/main/resources/application.properties') diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index e711a88..f1d166d 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,2 +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