We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27d7ce5 commit 833f837Copy full SHA for 833f837
2 files changed
src/main/resources/application.conf
@@ -18,9 +18,9 @@ postgres {
18
host = ${?POSTGRES_HOST}
19
port = "5432"
20
port = ${?POSTGRES_PORT}
21
- username = null
+ username = "postgres"
22
username = ${?POSTGRES_USERNAME}
23
- password = null
+ password = "postgres"
24
password = ${?POSTGRES_PASSWORD}
25
}
26
src/test/resources/application.conf
@@ -6,7 +6,15 @@ mongodb {
6
password = null
7
8
9
+postgres {
10
+ database = "sdkman"
11
+ host = "127.0.0.1"
12
+ port = "5432"
13
14
15
+}
16
+
17
server {
port = 8080
host = "0.0.0.0"
-}
0 commit comments