diff options
author | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-03-23 14:53:14 +0300 |
---|---|---|
committer | mrfoxygmfr <mrfoxygmfr@sch9.ru> | 2025-03-23 14:53:14 +0300 |
commit | 249c81ef4cf1db3cf4248c33fe614ff299e2dd57 (patch) | |
tree | 2bfcea9b6e0b2f07426327d55b945ecd962d4c55 /src/test/resources/application.properties | |
parent | e06ab0f9e796e914529bdd55dbeb6f04846aed02 (diff) |
test(db): add simple hibernate config test
Diffstat (limited to 'src/test/resources/application.properties')
-rw-r--r-- | src/test/resources/application.properties | 6 |
1 files changed, 6 insertions, 0 deletions
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 |