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 806371c commit c05dc3fCopy full SHA for c05dc3f
app/build.gradle
@@ -79,7 +79,7 @@ jooq {
79
driver = 'org.postgresql.Driver'
80
url = 'jdbc:postgresql://localhost:5432/postgres'
81
user = 'postgres'
82
- password = ''
+ password = 'YOU_MUST_CHANGE_THIS_PASSWORD'
83
properties {
84
property {
85
key = 'ssl'
app/src/main/resources/hikariJdbc.properties
@@ -2,7 +2,7 @@
2
3
jdbc.url=jdbc:postgresql://localhost:5432/postgres
4
jdbc.username=postgres
5
-jdbc.password=
+jdbc.password=YOU_MUST_CHANGE_THIS_PASSWORD
6
7
# Idle Timeout
8
hikaricp.minimumIdle=10
0 commit comments