Skip to content

Commit

Permalink
fix(config): default port for postgresDB
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoscode committed Jun 1, 2023
1 parent 751f483 commit 6b603c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spring:
application:
name: ${APPLICATION_NAME:miw}
datasource:
url: jdbc:postgresql://${DB_HOST:localhost}:${DB_PORT:5433}/${DB_NAME:miw}?useSSL=${USE_SSL:false}
url: jdbc:postgresql://${DB_HOST:localhost}:${DB_PORT:5432}/${DB_NAME:miw}?useSSL=${USE_SSL:false}
username: ${DB_USER_NAME:root}
password: ${DB_PASSWORD:smart}
initialization-mode: always
Expand Down

0 comments on commit 6b603c0

Please sign in to comment.